dsh-plugin-capabilities 0.3.0 → 0.3.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/client.js +11 -3
- package/lib/client.js.map +2 -2
- package/lib/index.js +22 -2
- package/lib/index.js.map +2 -2
- package/market/mcp.json +313 -27
- package/market/skills.json +531 -4
- package/package.json +1 -1
- package/src/client/MarketTab.tsx +14 -5
- package/src/client/css.ts +4 -0
- package/src/client/index.ts +12 -1
- package/src/market.test.ts +6 -4
- package/src/market.ts +37 -3
package/market/mcp.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": 1,
|
|
3
|
-
"updatedAt": "2026-08-
|
|
3
|
+
"updatedAt": "2026-08-19",
|
|
4
4
|
"servers": [
|
|
5
5
|
{
|
|
6
6
|
"id": "filesystem",
|
|
@@ -10,11 +10,29 @@
|
|
|
10
10
|
"descriptionZh": "受控目录的读写访问。默认参数 \".\" 只放开 dsh 工作目录,安装后可编辑该行,列出你要开放的具体目录。",
|
|
11
11
|
"transport": "stdio",
|
|
12
12
|
"command": "npx",
|
|
13
|
-
"args": [
|
|
13
|
+
"args": [
|
|
14
|
+
"-y",
|
|
15
|
+
"@modelcontextprotocol/server-filesystem",
|
|
16
|
+
"."
|
|
17
|
+
],
|
|
14
18
|
"homepage": "https://github.com/modelcontextprotocol/servers/tree/main/src/filesystem",
|
|
15
19
|
"category": "files",
|
|
16
20
|
"runtime": "npx (Node.js)",
|
|
17
|
-
"tools": [
|
|
21
|
+
"tools": [
|
|
22
|
+
"read_file",
|
|
23
|
+
"read_multiple_files",
|
|
24
|
+
"write_file",
|
|
25
|
+
"edit_file",
|
|
26
|
+
"create_directory",
|
|
27
|
+
"list_directory",
|
|
28
|
+
"directory_tree",
|
|
29
|
+
"move_file",
|
|
30
|
+
"search_files",
|
|
31
|
+
"get_file_info",
|
|
32
|
+
"list_allowed_directories"
|
|
33
|
+
],
|
|
34
|
+
"detail": "Read/write access to the directories you list as arguments. Every file operation is a separate tool call (read_file, edit_file, directory_tree...), so the model sees exactly what changed. Edit the row after install to replace the default '.' with the roots you want to expose.",
|
|
35
|
+
"detailZh": "对参数中列出的目录进行读写。每个文件操作都是独立工具调用(read_file、edit_file、directory_tree 等),模型能精确看到每处改动。安装后编辑该行,把默认的「.」换成你要开放的具体目录。"
|
|
18
36
|
},
|
|
19
37
|
{
|
|
20
38
|
"id": "memory",
|
|
@@ -24,11 +42,26 @@
|
|
|
24
42
|
"descriptionZh": "跨会话的持久知识图谱记忆(实体、关系、观察)。",
|
|
25
43
|
"transport": "stdio",
|
|
26
44
|
"command": "npx",
|
|
27
|
-
"args": [
|
|
45
|
+
"args": [
|
|
46
|
+
"-y",
|
|
47
|
+
"@modelcontextprotocol/server-memory"
|
|
48
|
+
],
|
|
28
49
|
"homepage": "https://github.com/modelcontextprotocol/servers/tree/main/src/memory",
|
|
29
50
|
"category": "knowledge",
|
|
30
51
|
"runtime": "npx (Node.js)",
|
|
31
|
-
"tools": [
|
|
52
|
+
"tools": [
|
|
53
|
+
"create_entities",
|
|
54
|
+
"create_relations",
|
|
55
|
+
"add_observations",
|
|
56
|
+
"delete_entities",
|
|
57
|
+
"delete_observations",
|
|
58
|
+
"delete_relations",
|
|
59
|
+
"read_graph",
|
|
60
|
+
"search_nodes",
|
|
61
|
+
"open_nodes"
|
|
62
|
+
],
|
|
63
|
+
"detail": "A persistent knowledge graph stored as JSONL: entities, relations and observations accumulate across sessions. Good for long-running projects where the agent should remember decisions, people and facts without re-reading transcripts.",
|
|
64
|
+
"detailZh": "以 JSONL 持久化的知识图谱:实体、关系与观察跨会话累积。适合长线项目,让 agent 不必重读记录就记得决策、人物与事实。"
|
|
32
65
|
},
|
|
33
66
|
{
|
|
34
67
|
"id": "sequentialthinking",
|
|
@@ -38,11 +71,18 @@
|
|
|
38
71
|
"descriptionZh": "通过结构化的思考链进行动态、反思式的问题求解。",
|
|
39
72
|
"transport": "stdio",
|
|
40
73
|
"command": "npx",
|
|
41
|
-
"args": [
|
|
74
|
+
"args": [
|
|
75
|
+
"-y",
|
|
76
|
+
"@modelcontextprotocol/server-sequentialthinking"
|
|
77
|
+
],
|
|
42
78
|
"homepage": "https://github.com/modelcontextprotocol/servers/tree/main/src/sequentialthinking",
|
|
43
79
|
"category": "reasoning",
|
|
44
80
|
"runtime": "npx (Node.js)",
|
|
45
|
-
"tools": [
|
|
81
|
+
"tools": [
|
|
82
|
+
"sequentialthinking"
|
|
83
|
+
],
|
|
84
|
+
"detail": "A single tool that lets the model externalize its reasoning: revise earlier thoughts, branch into alternatives, backtrack when a line of reasoning dead-ends. A token-cheap way to improve multi-step reasoning quality.",
|
|
85
|
+
"detailZh": "只有一个工具,让模型把推理过程外化:可修改前文思路、分支探索、走不通时回退。提升多步推理质量的低成本手段。"
|
|
46
86
|
},
|
|
47
87
|
{
|
|
48
88
|
"id": "everything",
|
|
@@ -52,11 +92,23 @@
|
|
|
52
92
|
"descriptionZh": "覆盖 MCP 全部能力的参考服务器——提示、资源、工具、采样,适合验证客户端配置。",
|
|
53
93
|
"transport": "stdio",
|
|
54
94
|
"command": "npx",
|
|
55
|
-
"args": [
|
|
95
|
+
"args": [
|
|
96
|
+
"-y",
|
|
97
|
+
"@modelcontextprotocol/server-everything"
|
|
98
|
+
],
|
|
56
99
|
"homepage": "https://github.com/modelcontextprotocol/servers/tree/main/src/everything",
|
|
57
100
|
"category": "test",
|
|
58
101
|
"runtime": "npx (Node.js)",
|
|
59
|
-
"tools": [
|
|
102
|
+
"tools": [
|
|
103
|
+
"echo",
|
|
104
|
+
"add",
|
|
105
|
+
"sampleLLM",
|
|
106
|
+
"longRunningOperation",
|
|
107
|
+
"getTinyImage",
|
|
108
|
+
"annotatedMessage"
|
|
109
|
+
],
|
|
110
|
+
"detail": "The MCP reference server that exercises every feature: prompts, resources, tools, sampling, notifications. Not useful for real work; use it to verify a client or transport setup end to end.",
|
|
111
|
+
"detailZh": "MCP 官方参考服务器,覆盖全部特性:提示、资源、工具、采样、通知。不适合干正事,用来端到端验证客户端或传输配置。"
|
|
60
112
|
},
|
|
61
113
|
{
|
|
62
114
|
"id": "git",
|
|
@@ -66,11 +118,64 @@
|
|
|
66
118
|
"descriptionZh": "操作本地 Git 仓库:状态、差异、分支、提交、标签。",
|
|
67
119
|
"transport": "stdio",
|
|
68
120
|
"command": "uvx",
|
|
69
|
-
"args": [
|
|
121
|
+
"args": [
|
|
122
|
+
"mcp-server-git"
|
|
123
|
+
],
|
|
70
124
|
"homepage": "https://github.com/modelcontextprotocol/servers/tree/main/src/git",
|
|
71
125
|
"category": "dev",
|
|
72
126
|
"runtime": "uvx (Python/uv)",
|
|
73
|
-
"tools": [
|
|
127
|
+
"tools": [
|
|
128
|
+
"git_status",
|
|
129
|
+
"git_diff_unstaged",
|
|
130
|
+
"git_diff_staged",
|
|
131
|
+
"git_diff",
|
|
132
|
+
"git_add",
|
|
133
|
+
"git_commit",
|
|
134
|
+
"git_reset",
|
|
135
|
+
"git_log",
|
|
136
|
+
"git_create_branch",
|
|
137
|
+
"git_checkout_branch",
|
|
138
|
+
"git_list_branches",
|
|
139
|
+
"git_create_tag",
|
|
140
|
+
"git_delete_tag",
|
|
141
|
+
"git_list_tags",
|
|
142
|
+
"git_push",
|
|
143
|
+
"git_pull"
|
|
144
|
+
],
|
|
145
|
+
"detail": "Read-mostly Git operations on local repositories: status, diffs, branches, log, plus commit/push/pull. Safer than a shell for routine Git questions because the tool surface is bounded; runs via uvx (needs Python/uv).",
|
|
146
|
+
"detailZh": "对本地仓库的 Git 操作,以读为主:状态、差异、分支、日志,外加提交/推送/拉取。相比直接开 shell,工具面收窄更安全;经 uvx 运行(需要 Python/uv)。"
|
|
147
|
+
},
|
|
148
|
+
{
|
|
149
|
+
"id": "serena",
|
|
150
|
+
"name": "Serena",
|
|
151
|
+
"nameZh": "Serena 语义代码工具包",
|
|
152
|
+
"description": "Semantic code intelligence over language servers: find symbols and references, read and edit precise ranges instead of whole files.",
|
|
153
|
+
"descriptionZh": "基于语言服务器的语义代码工具:找符号与引用,按精确范围读写而非整文件。",
|
|
154
|
+
"transport": "stdio",
|
|
155
|
+
"command": "uvx",
|
|
156
|
+
"args": [
|
|
157
|
+
"--from",
|
|
158
|
+
"git+https://github.com/oraios/serena",
|
|
159
|
+
"serena",
|
|
160
|
+
"start-mcp-server"
|
|
161
|
+
],
|
|
162
|
+
"homepage": "https://github.com/oraios/serena",
|
|
163
|
+
"category": "dev",
|
|
164
|
+
"runtime": "uvx (Python/uv)",
|
|
165
|
+
"tools": [
|
|
166
|
+
"find_symbol",
|
|
167
|
+
"find_referencing_symbols",
|
|
168
|
+
"get_symbols_overview",
|
|
169
|
+
"get_body",
|
|
170
|
+
"search_for_pattern",
|
|
171
|
+
"list_dir",
|
|
172
|
+
"create_file",
|
|
173
|
+
"edit_file",
|
|
174
|
+
"full_file_read",
|
|
175
|
+
"think_about_collected_information"
|
|
176
|
+
],
|
|
177
|
+
"detail": "A free, local alternative to hosted coding agents: Serena wires LSP language servers into MCP so the model navigates code semantically — find_symbol, find_referencing_symbols, read or edit a function's body — token-efficiently on huge codebases. Configures languages on first run; served over uvx from git.",
|
|
178
|
+
"detailZh": "托管式编码 agent 的免费本地替代:Serena 把 LSP 语言服务器接进 MCP,让模型按语义导航代码——找符号、找引用、只读写函数体——在超大代码库上省 token。首次运行自动配置语言;经 uvx 从 git 拉取运行。"
|
|
74
179
|
},
|
|
75
180
|
{
|
|
76
181
|
"id": "fetch",
|
|
@@ -80,11 +185,17 @@
|
|
|
80
185
|
"descriptionZh": "网页内容抓取与转换,面向 LLM 使用优化。",
|
|
81
186
|
"transport": "stdio",
|
|
82
187
|
"command": "uvx",
|
|
83
|
-
"args": [
|
|
188
|
+
"args": [
|
|
189
|
+
"mcp-server-fetch"
|
|
190
|
+
],
|
|
84
191
|
"homepage": "https://github.com/modelcontextprotocol/servers/tree/main/src/fetch",
|
|
85
192
|
"category": "web",
|
|
86
193
|
"runtime": "uvx (Python/uv)",
|
|
87
|
-
"tools": [
|
|
194
|
+
"tools": [
|
|
195
|
+
"fetch"
|
|
196
|
+
],
|
|
197
|
+
"detail": "Fetches a web page and converts it to clean Markdown sized for LLM context; respects robots.txt. The go-to tool when the model needs to read one URL without spinning up a browser.",
|
|
198
|
+
"detailZh": "抓取网页并转成适合 LLM 上下文的干净 Markdown,遵循 robots.txt。模型需要不开浏览器读一个链接时的首选工具。"
|
|
88
199
|
},
|
|
89
200
|
{
|
|
90
201
|
"id": "sqlite",
|
|
@@ -94,11 +205,24 @@
|
|
|
94
205
|
"descriptionZh": "SQLite 数据库访问,支持结构检查与查询分析。安装后可编辑该行的 --db-path 参数。",
|
|
95
206
|
"transport": "stdio",
|
|
96
207
|
"command": "uvx",
|
|
97
|
-
"args": [
|
|
208
|
+
"args": [
|
|
209
|
+
"mcp-server-sqlite",
|
|
210
|
+
"--db-path",
|
|
211
|
+
"sqlite.db"
|
|
212
|
+
],
|
|
98
213
|
"homepage": "https://github.com/modelcontextprotocol/servers/tree/main/src/sqlite",
|
|
99
214
|
"category": "data",
|
|
100
215
|
"runtime": "uvx (Python/uv)",
|
|
101
|
-
"tools": [
|
|
216
|
+
"tools": [
|
|
217
|
+
"read_query",
|
|
218
|
+
"write_query",
|
|
219
|
+
"create_table",
|
|
220
|
+
"list_tables",
|
|
221
|
+
"describe_table",
|
|
222
|
+
"append_insight"
|
|
223
|
+
],
|
|
224
|
+
"detail": "Direct SQL against a SQLite file: read queries, schema inspection (list/describe tables) and an insights log. Edit the row's --db-path argument after installing to point at your database.",
|
|
225
|
+
"detailZh": "直接对 SQLite 文件执行 SQL:读查询、表结构检查(列表/描述)与洞察日志。安装后编辑该行的 --db-path 参数指向你的数据库。"
|
|
102
226
|
},
|
|
103
227
|
{
|
|
104
228
|
"id": "time",
|
|
@@ -108,11 +232,18 @@
|
|
|
108
232
|
"descriptionZh": "当前时间查询与时区转换。",
|
|
109
233
|
"transport": "stdio",
|
|
110
234
|
"command": "uvx",
|
|
111
|
-
"args": [
|
|
235
|
+
"args": [
|
|
236
|
+
"mcp-server-time"
|
|
237
|
+
],
|
|
112
238
|
"homepage": "https://github.com/modelcontextprotocol/servers/tree/main/src/time",
|
|
113
239
|
"category": "knowledge",
|
|
114
240
|
"runtime": "uvx (Python/uv)",
|
|
115
|
-
"tools": [
|
|
241
|
+
"tools": [
|
|
242
|
+
"get_current_time",
|
|
243
|
+
"convert_time"
|
|
244
|
+
],
|
|
245
|
+
"detail": "Current time in any IANA timezone and conversion between zones with proper DST handling. Solves the classic 'agent thinks it is yesterday' problem.",
|
|
246
|
+
"detailZh": "按 IANA 时区查当前时间并在时区间换算,正确处理夏令时。专治「agent 以为还是昨天」这类经典问题。"
|
|
116
247
|
},
|
|
117
248
|
{
|
|
118
249
|
"id": "github",
|
|
@@ -122,12 +253,45 @@
|
|
|
122
253
|
"descriptionZh": "仓库、Issue、PR 等操作。安装后需在环境变量中填入个人访问令牌。",
|
|
123
254
|
"transport": "stdio",
|
|
124
255
|
"command": "npx",
|
|
125
|
-
"args": [
|
|
126
|
-
|
|
256
|
+
"args": [
|
|
257
|
+
"-y",
|
|
258
|
+
"@modelcontextprotocol/server-github"
|
|
259
|
+
],
|
|
260
|
+
"envKeys": [
|
|
261
|
+
"GITHUB_PERSONAL_ACCESS_TOKEN"
|
|
262
|
+
],
|
|
127
263
|
"homepage": "https://github.com/modelcontextprotocol/servers/tree/main/src/github",
|
|
128
264
|
"category": "dev",
|
|
129
265
|
"runtime": "npx (Node.js)",
|
|
130
|
-
"tools": [
|
|
266
|
+
"tools": [
|
|
267
|
+
"create_or_update_file",
|
|
268
|
+
"create_branch",
|
|
269
|
+
"create_issue",
|
|
270
|
+
"add_issue_comment",
|
|
271
|
+
"create_pull_request",
|
|
272
|
+
"create_pull_request_review",
|
|
273
|
+
"fork_repository",
|
|
274
|
+
"push_files",
|
|
275
|
+
"get_file_contents",
|
|
276
|
+
"get_issue",
|
|
277
|
+
"get_pull_request",
|
|
278
|
+
"get_pull_request_files",
|
|
279
|
+
"get_pull_request_status",
|
|
280
|
+
"get_pull_request_comments",
|
|
281
|
+
"list_commits",
|
|
282
|
+
"list_issues",
|
|
283
|
+
"list_pull_requests",
|
|
284
|
+
"list_branches",
|
|
285
|
+
"merge_pull_request",
|
|
286
|
+
"search_code",
|
|
287
|
+
"search_issues",
|
|
288
|
+
"search_repositories",
|
|
289
|
+
"search_users",
|
|
290
|
+
"update_issue",
|
|
291
|
+
"update_pull_request_branch"
|
|
292
|
+
],
|
|
293
|
+
"detail": "The official GitHub MCP server: issues, PRs, reviews, branches, file contents, code/issue/repo search. Needs a personal access token in GITHUB_PERSONAL_ACCESS_TOKEN; the token's scopes decide what it may touch.",
|
|
294
|
+
"detailZh": "GitHub 官方 MCP 服务器:Issue、PR、评审、分支、文件内容、代码/Issue/仓库搜索。需要在环境变量 GITHUB_PERSONAL_ACCESS_TOKEN 里填个人访问令牌,能碰什么由令牌 scope 决定。"
|
|
131
295
|
},
|
|
132
296
|
{
|
|
133
297
|
"id": "brave-search",
|
|
@@ -137,12 +301,49 @@
|
|
|
137
301
|
"descriptionZh": "通过 Brave API 进行网页/本地/图片/新闻搜索,需要 Brave API 密钥。",
|
|
138
302
|
"transport": "stdio",
|
|
139
303
|
"command": "npx",
|
|
140
|
-
"args": [
|
|
141
|
-
|
|
304
|
+
"args": [
|
|
305
|
+
"-y",
|
|
306
|
+
"@modelcontextprotocol/server-brave-search"
|
|
307
|
+
],
|
|
308
|
+
"envKeys": [
|
|
309
|
+
"BRAVE_API_KEY"
|
|
310
|
+
],
|
|
142
311
|
"homepage": "https://github.com/modelcontextprotocol/servers/tree/main/src/brave-search",
|
|
143
312
|
"category": "web",
|
|
144
313
|
"runtime": "npx (Node.js)",
|
|
145
|
-
"tools": [
|
|
314
|
+
"tools": [
|
|
315
|
+
"brave_web_search",
|
|
316
|
+
"brave_local_search"
|
|
317
|
+
],
|
|
318
|
+
"detail": "Web, news, image and local search through the Brave Search API — an independent index, not a Google/Bing reseller. Register at brave.com/search/api for the free tier and put the key in BRAVE_API_KEY after install.",
|
|
319
|
+
"detailZh": "经 Brave Search API 的网页/新闻/图片/本地搜索——独立索引,不是 Google/Bing 的转售。到 brave.com/search/api 注册免费档,装好后把密钥填进 BRAVE_API_KEY。"
|
|
320
|
+
},
|
|
321
|
+
{
|
|
322
|
+
"id": "tavily",
|
|
323
|
+
"name": "Tavily",
|
|
324
|
+
"nameZh": "Tavily 搜索",
|
|
325
|
+
"description": "LLM-oriented search, extraction, crawling and site mapping via the Tavily API. Free tier available; key goes in TAVILY_API_KEY.",
|
|
326
|
+
"descriptionZh": "面向 LLM 的搜索、抽取、爬取与站点地图(Tavily API)。有免费额度;密钥填在 TAVILY_API_KEY。",
|
|
327
|
+
"transport": "stdio",
|
|
328
|
+
"command": "npx",
|
|
329
|
+
"args": [
|
|
330
|
+
"-y",
|
|
331
|
+
"tavily-mcp"
|
|
332
|
+
],
|
|
333
|
+
"envKeys": [
|
|
334
|
+
"TAVILY_API_KEY"
|
|
335
|
+
],
|
|
336
|
+
"homepage": "https://github.com/tavily-ai/tavily-mcp",
|
|
337
|
+
"category": "web",
|
|
338
|
+
"runtime": "npx (Node.js)",
|
|
339
|
+
"tools": [
|
|
340
|
+
"tavily-search",
|
|
341
|
+
"tavily-extract",
|
|
342
|
+
"tavily-crawl",
|
|
343
|
+
"tavily-map"
|
|
344
|
+
],
|
|
345
|
+
"detail": "A search stack built for agents: tavily-search returns LLM-ready synthesized results, tavily-extract pulls clean content from URLs, tavily-crawl walks whole sites and tavily-map returns a site's page structure. A popular default for giving an agent web research. Register at tavily.com for a free key.",
|
|
346
|
+
"detailZh": "专为 agent 打造的搜索全家桶:tavily-search 返回适合 LLM 直接用的合成结果,tavily-extract 从 URL 抽干净正文,tavily-crawl 爬整站,tavily-map 给出站点页面结构。给 agent 配联网调研能力的流行默认选择。到 tavily.com 注册可得免费密钥。"
|
|
146
347
|
},
|
|
147
348
|
{
|
|
148
349
|
"id": "puppeteer",
|
|
@@ -152,11 +353,88 @@
|
|
|
152
353
|
"descriptionZh": "浏览器自动化:导航、截图、点击、表单填写、JS 执行。",
|
|
153
354
|
"transport": "stdio",
|
|
154
355
|
"command": "npx",
|
|
155
|
-
"args": [
|
|
356
|
+
"args": [
|
|
357
|
+
"-y",
|
|
358
|
+
"@modelcontextprotocol/server-puppeteer"
|
|
359
|
+
],
|
|
156
360
|
"homepage": "https://github.com/modelcontextprotocol/servers/tree/main/src/puppeteer",
|
|
157
361
|
"category": "web",
|
|
158
362
|
"runtime": "npx (Node.js)",
|
|
159
|
-
"tools": [
|
|
363
|
+
"tools": [
|
|
364
|
+
"puppeteer_navigate",
|
|
365
|
+
"puppeteer_screenshot",
|
|
366
|
+
"puppeteer_click",
|
|
367
|
+
"puppeteer_fill",
|
|
368
|
+
"puppeteer_evaluate",
|
|
369
|
+
"puppeteer_select"
|
|
370
|
+
],
|
|
371
|
+
"detail": "Drives a real Chromium: navigate, screenshot, click, fill forms, evaluate JS. A full browser stack with no site-specific logic; for accessibility-tree-driven automation see the Playwright entry instead.",
|
|
372
|
+
"detailZh": "驱动真实 Chromium:导航、截图、点击、填表、执行 JS。纯浏览器栈、无站点适配逻辑;要基于无障碍树的自动化请看 Playwright 那条。"
|
|
373
|
+
},
|
|
374
|
+
{
|
|
375
|
+
"id": "playwright",
|
|
376
|
+
"name": "Playwright",
|
|
377
|
+
"nameZh": "Playwright 浏览器",
|
|
378
|
+
"description": "Microsoft's official browser automation MCP: drives a real browser through the accessibility tree — navigate, click, type, screenshot — no vision model needed.",
|
|
379
|
+
"descriptionZh": "微软官方浏览器自动化 MCP:经无障碍树驱动真实浏览器——导航、点击、输入、截图——不需要视觉模型。",
|
|
380
|
+
"transport": "stdio",
|
|
381
|
+
"command": "npx",
|
|
382
|
+
"args": [
|
|
383
|
+
"-y",
|
|
384
|
+
"@playwright/mcp@latest"
|
|
385
|
+
],
|
|
386
|
+
"homepage": "https://github.com/microsoft/playwright-mcp",
|
|
387
|
+
"category": "web",
|
|
388
|
+
"runtime": "npx (Node.js)",
|
|
389
|
+
"tools": [
|
|
390
|
+
"browser_navigate",
|
|
391
|
+
"browser_click",
|
|
392
|
+
"browser_type",
|
|
393
|
+
"browser_select_option",
|
|
394
|
+
"browser_snapshot",
|
|
395
|
+
"browser_evaluate",
|
|
396
|
+
"browser_console_messages",
|
|
397
|
+
"browser_network_requests",
|
|
398
|
+
"browser_wait_for",
|
|
399
|
+
"browser_handle_dialog",
|
|
400
|
+
"browser_screenshot",
|
|
401
|
+
"browser_install"
|
|
402
|
+
],
|
|
403
|
+
"detail": "Microsoft's official Playwright MCP. The model interacts with pages via the accessibility snapshot rather than screenshots, so it is fast and works headless; the managed browser is one browser_install away. Tab management, console and network inspection, file upload and dialogs are first-class. The modern default for web automation.",
|
|
404
|
+
"detailZh": "微软官方 Playwright MCP。模型通过无障碍快照而非截图与页面交互,速度快且可无头运行;托管浏览器一条 browser_install 就装好。标签页管理、控制台/网络检查、文件上传与对话框都是一等公民。当下网页自动化的默认选择。"
|
|
405
|
+
},
|
|
406
|
+
{
|
|
407
|
+
"id": "chrome-devtools",
|
|
408
|
+
"name": "Chrome DevTools",
|
|
409
|
+
"nameZh": "Chrome DevTools",
|
|
410
|
+
"description": "Google's official DevTools MCP: drive Chrome with snapshots, clicks and forms, plus performance traces, console and network inspection.",
|
|
411
|
+
"descriptionZh": "Google 官方 DevTools MCP:快照、点击、表单驱动 Chrome,附带性能 trace、控制台与网络检查。",
|
|
412
|
+
"transport": "stdio",
|
|
413
|
+
"command": "npx",
|
|
414
|
+
"args": [
|
|
415
|
+
"-y",
|
|
416
|
+
"chrome-devtools-mcp@latest"
|
|
417
|
+
],
|
|
418
|
+
"homepage": "https://github.com/ChromeDevTools/chrome-devtools-mcp",
|
|
419
|
+
"category": "dev",
|
|
420
|
+
"runtime": "npx (Node.js)",
|
|
421
|
+
"tools": [
|
|
422
|
+
"navigate_page",
|
|
423
|
+
"take_snapshot",
|
|
424
|
+
"take_screenshot",
|
|
425
|
+
"click_element",
|
|
426
|
+
"fill_form",
|
|
427
|
+
"evaluate_script",
|
|
428
|
+
"new_page",
|
|
429
|
+
"list_pages",
|
|
430
|
+
"select_page",
|
|
431
|
+
"performance_start_trace",
|
|
432
|
+
"performance_stop_trace",
|
|
433
|
+
"list_console_messages",
|
|
434
|
+
"list_network_requests"
|
|
435
|
+
],
|
|
436
|
+
"detail": "From the Chrome DevTools team: page automation via accessibility snapshots (navigate, click, fill, evaluate) plus the DevTools-native superpowers — CPU and network performance traces, console messages, network request logs. Pick it when you are debugging a slow page rather than automating it.",
|
|
437
|
+
"detailZh": "Chrome DevTools 团队出品:经无障碍快照自动化页面(导航/点击/表单/执行 JS),外加 DevTools 看家本领——CPU/网络性能 trace、控制台消息、网络请求日志。调试慢页面(而非纯自动化)时选它。"
|
|
160
438
|
},
|
|
161
439
|
{
|
|
162
440
|
"id": "context7",
|
|
@@ -166,11 +444,19 @@
|
|
|
166
444
|
"descriptionZh": "获取各类库与框架的最新版本文档与代码示例。",
|
|
167
445
|
"transport": "stdio",
|
|
168
446
|
"command": "npx",
|
|
169
|
-
"args": [
|
|
447
|
+
"args": [
|
|
448
|
+
"-y",
|
|
449
|
+
"@upstash/context7-mcp"
|
|
450
|
+
],
|
|
170
451
|
"homepage": "https://github.com/upstash/context7",
|
|
171
452
|
"category": "knowledge",
|
|
172
453
|
"runtime": "npx (Node.js)",
|
|
173
|
-
"tools": [
|
|
454
|
+
"tools": [
|
|
455
|
+
"resolve-library-id",
|
|
456
|
+
"get-library-docs"
|
|
457
|
+
],
|
|
458
|
+
"detail": "Pulls up-to-date, version-pinned documentation for any library: resolve-library-id finds the doc set, get-library-docs returns topic-scoped pages with code examples. Stops the model answering from stale training data.",
|
|
459
|
+
"detailZh": "为任意库拉取最新且锁版本的文档:resolve-library-id 定位文档集,get-library-docs 返回带代码示例的按题取材页面。防止模型用训练数据里的旧 API 答题。"
|
|
174
460
|
}
|
|
175
461
|
]
|
|
176
462
|
}
|