@comfanion/workflow 4.36.31 → 4.36.33
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 +16 -14
- package/package.json +1 -1
- package/src/build-info.json +2 -2
- package/src/opencode/mcp/catalog.yaml +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
|
}
|
|
@@ -514,10 +515,11 @@ program
|
|
|
514
515
|
'context7': { type: 'remote', url: 'https://mcp.context7.com/mcp' },
|
|
515
516
|
'grep': { type: 'remote', url: 'https://mcp.grep.app' },
|
|
516
517
|
'sentry': { type: 'remote', url: 'https://mcp.sentry.dev/mcp', oauth: {} },
|
|
517
|
-
'sequential-thinking': { type: 'local', command: ['npx', '-y', '@
|
|
518
|
-
'
|
|
519
|
-
'
|
|
520
|
-
'
|
|
518
|
+
'sequential-thinking': { type: 'local', command: ['npx', '-y', '@modelcontextprotocol/server-sequential-thinking'] },
|
|
519
|
+
'chrome-devtools': { type: 'local', command: ['npx', '-y', 'chrome-devtools-mcp@latest'] },
|
|
520
|
+
'playwright': { type: 'local', command: ['npx', '-y', '@playwright/mcp@latest'] },
|
|
521
|
+
'github': { type: 'local', command: ['npx', '-y', '@modelcontextprotocol/server-github'] },
|
|
522
|
+
'postgres': { type: 'local', command: ['npx', '-y', '@modelcontextprotocol/server-postgres'] }
|
|
521
523
|
};
|
|
522
524
|
|
|
523
525
|
// Read existing opencode.json or create new
|
|
@@ -1281,14 +1283,14 @@ const MCP_CATALOG = {
|
|
|
1281
1283
|
name: 'Sequential Thinking',
|
|
1282
1284
|
description: 'Enhanced reasoning for complex tasks',
|
|
1283
1285
|
type: 'local',
|
|
1284
|
-
command: ['npx', '-y', '@
|
|
1286
|
+
command: ['npx', '-y', '@modelcontextprotocol/server-sequential-thinking'],
|
|
1285
1287
|
recommended: true
|
|
1286
1288
|
},
|
|
1287
1289
|
'playwright': {
|
|
1288
1290
|
name: 'Playwright',
|
|
1289
1291
|
description: 'Browser automation and testing',
|
|
1290
1292
|
type: 'local',
|
|
1291
|
-
command: ['npx', '-y', '@
|
|
1293
|
+
command: ['npx', '-y', '@playwright/mcp@latest'],
|
|
1292
1294
|
recommended: false
|
|
1293
1295
|
},
|
|
1294
1296
|
'chrome-devtools': {
|
|
@@ -1302,7 +1304,7 @@ const MCP_CATALOG = {
|
|
|
1302
1304
|
name: 'GitHub',
|
|
1303
1305
|
description: 'GitHub repos, issues, PRs',
|
|
1304
1306
|
type: 'local',
|
|
1305
|
-
command: ['npx', '-y', '@
|
|
1307
|
+
command: ['npx', '-y', '@modelcontextprotocol/server-github'],
|
|
1306
1308
|
requires_env: ['GITHUB_TOKEN'],
|
|
1307
1309
|
recommended: false
|
|
1308
1310
|
},
|
|
@@ -1310,7 +1312,7 @@ const MCP_CATALOG = {
|
|
|
1310
1312
|
name: 'GitLab',
|
|
1311
1313
|
description: 'GitLab repos, issues, MRs',
|
|
1312
1314
|
type: 'local',
|
|
1313
|
-
command: ['npx', '-y', '@
|
|
1315
|
+
command: ['npx', '-y', '@modelcontextprotocol/server-gitlab'],
|
|
1314
1316
|
requires_env: ['GITLAB_TOKEN'],
|
|
1315
1317
|
recommended: false
|
|
1316
1318
|
},
|
|
@@ -1318,7 +1320,7 @@ const MCP_CATALOG = {
|
|
|
1318
1320
|
name: 'PostgreSQL',
|
|
1319
1321
|
description: 'Query PostgreSQL databases',
|
|
1320
1322
|
type: 'local',
|
|
1321
|
-
command: ['npx', '-y', '@
|
|
1323
|
+
command: ['npx', '-y', '@modelcontextprotocol/server-postgres'],
|
|
1322
1324
|
requires_env: ['POSTGRES_CONNECTION_STRING'],
|
|
1323
1325
|
recommended: false
|
|
1324
1326
|
},
|
|
@@ -1326,7 +1328,7 @@ const MCP_CATALOG = {
|
|
|
1326
1328
|
name: 'Slack',
|
|
1327
1329
|
description: 'Slack messages and channels',
|
|
1328
1330
|
type: 'local',
|
|
1329
|
-
command: ['npx', '-y', '@
|
|
1331
|
+
command: ['npx', '-y', '@modelcontextprotocol/server-slack'],
|
|
1330
1332
|
requires_env: ['SLACK_TOKEN'],
|
|
1331
1333
|
recommended: false
|
|
1332
1334
|
}
|
package/package.json
CHANGED
package/src/build-info.json
CHANGED
|
@@ -58,7 +58,7 @@ servers:
|
|
|
58
58
|
category: thinking
|
|
59
59
|
recommended: true
|
|
60
60
|
type: local
|
|
61
|
-
command: ["npx", "-y", "@
|
|
61
|
+
command: ["npx", "-y", "@modelcontextprotocol/server-sequential-thinking"]
|
|
62
62
|
tags: [reasoning, planning, complex-tasks]
|
|
63
63
|
|
|
64
64
|
playwright:
|
|
@@ -67,7 +67,7 @@ servers:
|
|
|
67
67
|
category: browser
|
|
68
68
|
recommended: false
|
|
69
69
|
type: local
|
|
70
|
-
command: ["npx", "-y", "@
|
|
70
|
+
command: ["npx", "-y", "@playwright/mcp@latest"]
|
|
71
71
|
tags: [browser, testing, automation, scraping]
|
|
72
72
|
|
|
73
73
|
chrome-devtools:
|