@comfanion/workflow 4.36.30 → 4.36.32
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/bin/cli.js +13 -4
- package/package.json +1 -1
- package/src/build-info.json +2 -2
- package/src/opencode/mcp/catalog.yaml +9 -0
package/bin/cli.js
CHANGED
|
@@ -262,11 +262,12 @@ program
|
|
|
262
262
|
message: 'Select MCP servers to enable (writes to opencode.json):',
|
|
263
263
|
choices: [
|
|
264
264
|
{ name: 'context7 - Library docs for npm, Go, Python (recommended)', value: 'context7', checked: true },
|
|
265
|
-
{ name: '
|
|
266
|
-
{ name: '
|
|
265
|
+
{ name: 'sequential-thinking - Enhanced reasoning (recommended)', value: 'sequential-thinking', checked: true },
|
|
266
|
+
{ name: 'chrome-devtools - Chrome debugging, DOM, network', value: 'chrome-devtools', checked: false },
|
|
267
267
|
{ name: 'playwright - Browser automation and testing', value: 'playwright', checked: false },
|
|
268
|
-
{ name: '
|
|
269
|
-
{ name: '
|
|
268
|
+
{ name: 'grep - Search code examples from GitHub', value: 'grep', checked: false },
|
|
269
|
+
{ name: 'github - GitHub repos, issues, PRs', value: 'github', checked: false },
|
|
270
|
+
{ name: 'sentry - Query Sentry issues (OAuth)', value: 'sentry', checked: false },
|
|
270
271
|
{ name: 'postgres - PostgreSQL database queries', value: 'postgres', checked: false }
|
|
271
272
|
]
|
|
272
273
|
}
|
|
@@ -515,6 +516,7 @@ program
|
|
|
515
516
|
'grep': { type: 'remote', url: 'https://mcp.grep.app' },
|
|
516
517
|
'sentry': { type: 'remote', url: 'https://mcp.sentry.dev/mcp', oauth: {} },
|
|
517
518
|
'sequential-thinking': { type: 'local', command: ['npx', '-y', '@anthropic/mcp-sequential-thinking'] },
|
|
519
|
+
'chrome-devtools': { type: 'local', command: ['npx', '-y', 'chrome-devtools-mcp@latest'] },
|
|
518
520
|
'playwright': { type: 'local', command: ['npx', '-y', '@anthropic/mcp-playwright'] },
|
|
519
521
|
'github': { type: 'local', command: ['npx', '-y', '@anthropic/mcp-github'] },
|
|
520
522
|
'postgres': { type: 'local', command: ['npx', '-y', '@anthropic/mcp-postgres'] }
|
|
@@ -1291,6 +1293,13 @@ const MCP_CATALOG = {
|
|
|
1291
1293
|
command: ['npx', '-y', '@anthropic/mcp-playwright'],
|
|
1292
1294
|
recommended: false
|
|
1293
1295
|
},
|
|
1296
|
+
'chrome-devtools': {
|
|
1297
|
+
name: 'Chrome DevTools',
|
|
1298
|
+
description: 'Chrome debugging, DOM, network, console',
|
|
1299
|
+
type: 'local',
|
|
1300
|
+
command: ['npx', '-y', 'chrome-devtools-mcp@latest'],
|
|
1301
|
+
recommended: false
|
|
1302
|
+
},
|
|
1294
1303
|
'github': {
|
|
1295
1304
|
name: 'GitHub',
|
|
1296
1305
|
description: 'GitHub repos, issues, PRs',
|
package/package.json
CHANGED
package/src/build-info.json
CHANGED
|
@@ -70,6 +70,15 @@ servers:
|
|
|
70
70
|
command: ["npx", "-y", "@anthropic/mcp-playwright"]
|
|
71
71
|
tags: [browser, testing, automation, scraping]
|
|
72
72
|
|
|
73
|
+
chrome-devtools:
|
|
74
|
+
name: "Chrome DevTools"
|
|
75
|
+
description: "Chrome debugging, DOM inspection, network, console"
|
|
76
|
+
category: browser
|
|
77
|
+
recommended: false
|
|
78
|
+
type: local
|
|
79
|
+
command: ["npx", "-y", "chrome-devtools-mcp@latest"]
|
|
80
|
+
tags: [chrome, debugging, devtools, dom]
|
|
81
|
+
|
|
73
82
|
puppeteer:
|
|
74
83
|
name: "Puppeteer"
|
|
75
84
|
description: "Headless Chrome automation"
|