@comfanion/workflow 4.36.31 → 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 +6 -4
- package/package.json +1 -1
- package/src/build-info.json +2 -2
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'] }
|
package/package.json
CHANGED
package/src/build-info.json
CHANGED