-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmcp-registry.json
More file actions
668 lines (668 loc) · 18.4 KB
/
Copy pathmcp-registry.json
File metadata and controls
668 lines (668 loc) · 18.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
{
"entries": [
{
"id": "builtin-calculator",
"name": "Calculator",
"date": "2025-04-28",
"source": "./plugins/calculator",
"summary": "数学表达式求值工具",
"description": "安全地计算数学表达式,支持加减乘除、取模、括号等基本运算。自动过滤非法字符,防止代码注入。",
"tags": [
"math",
"builtin",
"utility"
],
"usageCount": 0,
"relatedIds": [
"builtin-text-utils"
],
"verified": true,
"securityLevel": "S1",
"contributor": "AIX Team",
"license": "MIT",
"install": {
"type": "plugin",
"pluginSource": "./plugins/calculator"
},
"capabilities": {
"tools": [
"calculator"
],
"prompts": [],
"resources": []
}
},
{
"id": "builtin-crypto",
"name": "Crypto Utils",
"date": "2025-04-28",
"source": "./plugins/crypto",
"summary": "哈希、UUID、随机字符串生成工具",
"description": "提供 SHA-256/SHA-512/MD5 哈希计算、UUID v4 生成、密码学安全随机字符串生成。支持 hex/base64/base64url 多种编码格式。",
"tags": [
"crypto",
"builtin",
"utility",
"security"
],
"usageCount": 0,
"relatedIds": [
"builtin-text-utils"
],
"verified": true,
"securityLevel": "S1",
"contributor": "AIX Team",
"license": "MIT",
"install": {
"type": "plugin",
"pluginSource": "./plugins/crypto"
},
"capabilities": {
"tools": [
"hash-text",
"random-uuid",
"random-string"
],
"prompts": [],
"resources": []
}
},
{
"id": "builtin-datetime",
"name": "DateTime",
"date": "2025-04-28",
"source": "./plugins/datetime",
"summary": "日期与时间查询及格式化工具",
"description": "获取当前时间(支持多种时区和语言),格式化 ISO 日期字符串或 Unix 时间戳。输出包含 ISO、Unix 秒/毫秒、本地化格式。",
"tags": [
"datetime",
"builtin",
"utility"
],
"usageCount": 0,
"relatedIds": [
"builtin-system"
],
"verified": true,
"securityLevel": "S1",
"contributor": "AIX Team",
"license": "MIT",
"install": {
"type": "plugin",
"pluginSource": "./plugins/datetime"
},
"capabilities": {
"tools": [
"current-time",
"format-time"
],
"prompts": [],
"resources": []
}
},
{
"id": "builtin-filesystem",
"name": "Filesystem",
"date": "2025-04-28",
"source": "./plugins/filesystem",
"summary": "文件系统读写工具与文件资源",
"description": "列出目录内容(支持递归)、读取文本文件(带大小限制和行数截断)。同时提供 file:// URI 资源模板,可将本地文件作为 MCP 资源暴露。",
"tags": [
"filesystem",
"builtin",
"io"
],
"usageCount": 0,
"relatedIds": [
"builtin-system",
"mcp-filesystem"
],
"verified": true,
"securityLevel": "S1",
"contributor": "AIX Team",
"license": "MIT",
"install": {
"type": "plugin",
"pluginSource": "./plugins/filesystem"
},
"capabilities": {
"tools": [
"list-files",
"read-file"
],
"prompts": [],
"resources": [
"file://{filePath}"
]
}
},
{
"id": "builtin-system",
"name": "System",
"date": "2025-04-28",
"source": "./plugins/system",
"summary": "Shell 命令执行与系统信息资源",
"description": "在服务器上执行 Shell 命令(带超时和工作目录控制),并通过 system://info 资源暴露系统平台、架构、Node 版本、内存等信息。",
"tags": [
"system",
"builtin",
"shell",
"io"
],
"usageCount": 0,
"relatedIds": [
"builtin-filesystem"
],
"verified": true,
"securityLevel": "S1",
"contributor": "AIX Team",
"license": "MIT",
"install": {
"type": "plugin",
"pluginSource": "./plugins/system"
},
"capabilities": {
"tools": [
"run-command"
],
"prompts": [],
"resources": [
"system://info"
]
}
},
{
"id": "builtin-text-utils",
"name": "Text Utils",
"date": "2025-04-28",
"source": "./plugins/text-utils",
"summary": "JSON 格式化、Base64 编解码、文本统计",
"description": "格式化并美化 JSON 文本,Base64 编码/解码 UTF-8 文本,统计文本的字符数、字节数、行数和词数。",
"tags": [
"text",
"json",
"base64",
"builtin",
"utility"
],
"usageCount": 0,
"relatedIds": [
"builtin-crypto",
"builtin-calculator"
],
"verified": true,
"securityLevel": "S1",
"contributor": "AIX Team",
"license": "MIT",
"install": {
"type": "plugin",
"pluginSource": "./plugins/text-utils"
},
"capabilities": {
"tools": [
"json-format",
"base64",
"text-stats"
],
"prompts": [],
"resources": []
}
},
{
"id": "builtin-hello-json",
"name": "Hello JSON Plugin",
"version": "1.0.0",
"date": "2025-04-29",
"source": "./plugins/hello-json.json",
"summary": "用 JSON 编写的声明式 MCP 插件示例",
"description": "无需 TypeScript 编译,通过 JSON 声明工具、输入参数、模板响应和静态资源,适合像油猴脚本一样快速分享和安装轻量 MCP 工具。",
"tags": [
"json",
"declarative",
"builtin",
"utility"
],
"usageCount": 0,
"relatedIds": [
"builtin-text-utils"
],
"verified": true,
"securityLevel": "S1",
"contributor": "AIX Team",
"license": "MIT",
"install": {
"type": "plugin",
"pluginSource": "./plugins/hello-json.json"
},
"capabilities": {
"tools": [
"hello-json"
],
"prompts": [],
"resources": [
"json-plugin://hello-json/info"
]
}
},
{
"id": "mcp-playwright",
"name": "Playwright MCP",
"date": "2025-04-15",
"source": "https://github.com/microsoft/playwright-mcp",
"summary": "浏览器自动化:导航、截图、表单填写、元素交互",
"description": "基于 Playwright 的浏览器自动化 MCP 服务器。支持页面导航、元素点击、表单填写、截图、JavaScript 执行等操作。适用于 Web 测试、数据抓取和 UI 自动化。",
"tags": [
"browser",
"automation",
"testing",
"web"
],
"usageCount": 0,
"relatedIds": [
"mcp-fetch"
],
"verified": true,
"securityLevel": "S2",
"contributor": "Anthropic",
"license": "MIT",
"install": {
"type": "standalone",
"cursorConfig": {
"mcpServers": {
"playwright": {
"command": "npx",
"args": [
"-y",
"@playwright/mcp"
]
}
}
},
"claudeConfig": {
"mcpServers": {
"playwright": {
"command": "npx",
"args": [
"-y",
"@playwright/mcp"
]
}
}
},
"command": "npx -y @playwright/mcp"
},
"capabilities": {
"tools": [
"browser_navigate",
"browser_screenshot",
"browser_click",
"browser_fill",
"browser_evaluate"
],
"prompts": [],
"resources": []
}
},
{
"id": "mcp-fetch",
"name": "Fetch MCP",
"date": "2025-03-20",
"source": "https://github.com/modelcontextprotocol/servers/tree/main/src/fetch",
"summary": "HTTP 请求工具,获取网页内容并转换为 Markdown",
"description": "向任意 URL 发起 HTTP 请求,自动将 HTML 转换为 Markdown 以便 LLM 处理。支持 GET/POST 方法、自定义 Headers、内容长度限制。适用于网页内容抓取和 API 调用。",
"tags": [
"http",
"web",
"fetch",
"network"
],
"usageCount": 0,
"relatedIds": [
"mcp-playwright"
],
"verified": true,
"securityLevel": "S2",
"contributor": "MCP Official",
"license": "MIT",
"install": {
"type": "standalone",
"cursorConfig": {
"mcpServers": {
"fetch": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-fetch"
]
}
}
},
"claudeConfig": {
"mcpServers": {
"fetch": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-fetch"
]
}
}
},
"command": "npx -y @modelcontextprotocol/server-fetch"
},
"capabilities": {
"tools": [
"fetch"
],
"prompts": [],
"resources": []
}
},
{
"id": "mcp-memory",
"name": "Memory MCP",
"date": "2025-03-18",
"source": "https://github.com/modelcontextprotocol/servers/tree/main/src/memory",
"summary": "基于知识图谱的持久化记忆系统",
"description": "为 LLM 提供持久化记忆能力,基于本地知识图谱存储实体和关系。支持创建/搜索/删除实体、添加/删除关系和观察结果。数据存储在本地 JSON 文件中。",
"tags": [
"memory",
"knowledge-graph",
"persistence",
"ai"
],
"usageCount": 0,
"relatedIds": [
"mcp-sequential-thinking"
],
"verified": true,
"securityLevel": "S2",
"contributor": "MCP Official",
"license": "MIT",
"install": {
"type": "standalone",
"cursorConfig": {
"mcpServers": {
"memory": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-memory"
]
}
}
},
"claudeConfig": {
"mcpServers": {
"memory": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-memory"
]
}
}
},
"command": "npx -y @modelcontextprotocol/server-memory"
},
"capabilities": {
"tools": [
"create_entities",
"search_nodes",
"open_nodes",
"delete_entities",
"create_relations",
"delete_relations",
"add_observations",
"delete_observations"
],
"prompts": [],
"resources": []
}
},
{
"id": "mcp-filesystem",
"name": "Filesystem MCP (Official)",
"date": "2025-03-10",
"source": "https://github.com/modelcontextprotocol/servers/tree/main/src/filesystem",
"summary": "官方文件系统 MCP 服务器,提供完整文件读写能力",
"description": "MCP 官方文件系统服务器,提供安全的文件操作:读/写文件、创建/列出/移动目录、搜索文件、获取文件信息。通过白名单机制限制可访问的目录范围,确保安全性。",
"tags": [
"filesystem",
"io",
"official"
],
"usageCount": 0,
"relatedIds": [
"builtin-filesystem",
"builtin-system"
],
"verified": true,
"securityLevel": "S2",
"contributor": "MCP Official",
"license": "MIT",
"install": {
"type": "standalone",
"cursorConfig": {
"mcpServers": {
"filesystem": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-filesystem",
"/path/to/allowed/dir"
]
}
}
},
"claudeConfig": {
"mcpServers": {
"filesystem": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-filesystem",
"/path/to/allowed/dir"
]
}
}
},
"command": "npx -y @modelcontextprotocol/server-filesystem /path/to/allowed/dir"
},
"capabilities": {
"tools": [
"read_file",
"write_file",
"create_directory",
"list_directory",
"move_file",
"search_files",
"get_file_info",
"read_multiple_files"
],
"prompts": [],
"resources": []
}
},
{
"id": "mcp-sequential-thinking",
"name": "Sequential Thinking",
"date": "2025-04-01",
"source": "https://github.com/modelcontextprotocol/servers/tree/main/src/sequentialthinking",
"summary": "动态思维链推理工具,支持分支、修正和自适应深度",
"description": "帮助 LLM 进行结构化的逐步思考。支持动态调整推理深度、分支探索不同思路、修正之前的推理步骤。适用于复杂问题分析、规划和决策。",
"tags": [
"reasoning",
"thinking",
"ai",
"chain-of-thought"
],
"usageCount": 0,
"relatedIds": [
"mcp-memory"
],
"verified": true,
"securityLevel": "S2",
"contributor": "MCP Official",
"license": "MIT",
"install": {
"type": "standalone",
"cursorConfig": {
"mcpServers": {
"sequential-thinking": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-sequential-thinking"
]
}
}
},
"claudeConfig": {
"mcpServers": {
"sequential-thinking": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-sequential-thinking"
]
}
}
},
"command": "npx -y @modelcontextprotocol/server-sequential-thinking"
},
"capabilities": {
"tools": [
"sequentialthinking"
],
"prompts": [],
"resources": []
}
},
{
"id": "mcp-github",
"name": "GitHub MCP",
"date": "2025-03-25",
"source": "https://github.com/modelcontextprotocol/servers/tree/main/src/github",
"summary": "GitHub API 集成:Issues、PR、仓库管理",
"description": "通过 GitHub API 管理仓库、Issue、Pull Request、分支等。支持创建/搜索 Issue、创建 PR、获取文件内容、管理分支等操作。需要 GitHub Personal Access Token。",
"tags": [
"github",
"git",
"vcs",
"collaboration"
],
"usageCount": 0,
"relatedIds": [
"mcp-filesystem"
],
"verified": true,
"securityLevel": "S2",
"contributor": "MCP Official",
"license": "MIT",
"install": {
"type": "standalone",
"cursorConfig": {
"mcpServers": {
"github": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-github"
],
"env": {
"GITHUB_PERSONAL_ACCESS_TOKEN": "<your-token>"
}
}
}
},
"claudeConfig": {
"mcpServers": {
"github": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-github"
],
"env": {
"GITHUB_PERSONAL_ACCESS_TOKEN": "<your-token>"
}
}
}
},
"command": "GITHUB_PERSONAL_ACCESS_TOKEN=<token> npx -y @modelcontextprotocol/server-github"
},
"capabilities": {
"tools": [
"create_or_update_file",
"search_repositories",
"create_issue",
"create_pull_request",
"list_issues",
"get_file_contents",
"push_files"
],
"prompts": [],
"resources": []
}
},
{
"id": "mcp-postgres",
"name": "PostgreSQL MCP",
"date": "2025-03-15",
"source": "https://github.com/modelcontextprotocol/servers/tree/main/src/postgres",
"summary": "PostgreSQL 数据库查询与表结构浏览",
"description": "连接 PostgreSQL 数据库,执行只读 SQL 查询,浏览数据库 schema(表、列、类型、约束)。每个表的 schema 自动作为 MCP 资源暴露。适用于数据分析和数据库管理。",
"tags": [
"database",
"sql",
"postgres"
],
"usageCount": 0,
"relatedIds": [
"mcp-github"
],
"verified": true,
"securityLevel": "S2",
"contributor": "MCP Official",
"license": "MIT",
"install": {
"type": "standalone",
"cursorConfig": {
"mcpServers": {
"postgres": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-postgres",
"postgresql://user:pass@localhost:5432/dbname"
]
}
}
},
"claudeConfig": {
"mcpServers": {
"postgres": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-postgres",
"postgresql://user:pass@localhost:5432/dbname"
]
}
}
},
"command": "npx -y @modelcontextprotocol/server-postgres postgresql://user:pass@localhost:5432/dbname"
},
"capabilities": {
"tools": [
"query"
],
"prompts": [],
"resources": [
"postgres://<host>/<table>/schema"
]
}
}
]
}