@comfanion/workflow 4.36.32 → 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 CHANGED
@@ -515,11 +515,11 @@ program
515
515
  'context7': { type: 'remote', url: 'https://mcp.context7.com/mcp' },
516
516
  'grep': { type: 'remote', url: 'https://mcp.grep.app' },
517
517
  'sentry': { type: 'remote', url: 'https://mcp.sentry.dev/mcp', oauth: {} },
518
- 'sequential-thinking': { type: 'local', command: ['npx', '-y', '@anthropic/mcp-sequential-thinking'] },
518
+ 'sequential-thinking': { type: 'local', command: ['npx', '-y', '@modelcontextprotocol/server-sequential-thinking'] },
519
519
  'chrome-devtools': { type: 'local', command: ['npx', '-y', 'chrome-devtools-mcp@latest'] },
520
- 'playwright': { type: 'local', command: ['npx', '-y', '@anthropic/mcp-playwright'] },
521
- 'github': { type: 'local', command: ['npx', '-y', '@anthropic/mcp-github'] },
522
- 'postgres': { type: 'local', command: ['npx', '-y', '@anthropic/mcp-postgres'] }
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'] }
523
523
  };
524
524
 
525
525
  // Read existing opencode.json or create new
@@ -1283,14 +1283,14 @@ const MCP_CATALOG = {
1283
1283
  name: 'Sequential Thinking',
1284
1284
  description: 'Enhanced reasoning for complex tasks',
1285
1285
  type: 'local',
1286
- command: ['npx', '-y', '@anthropic/mcp-sequential-thinking'],
1286
+ command: ['npx', '-y', '@modelcontextprotocol/server-sequential-thinking'],
1287
1287
  recommended: true
1288
1288
  },
1289
1289
  'playwright': {
1290
1290
  name: 'Playwright',
1291
1291
  description: 'Browser automation and testing',
1292
1292
  type: 'local',
1293
- command: ['npx', '-y', '@anthropic/mcp-playwright'],
1293
+ command: ['npx', '-y', '@playwright/mcp@latest'],
1294
1294
  recommended: false
1295
1295
  },
1296
1296
  'chrome-devtools': {
@@ -1304,7 +1304,7 @@ const MCP_CATALOG = {
1304
1304
  name: 'GitHub',
1305
1305
  description: 'GitHub repos, issues, PRs',
1306
1306
  type: 'local',
1307
- command: ['npx', '-y', '@anthropic/mcp-github'],
1307
+ command: ['npx', '-y', '@modelcontextprotocol/server-github'],
1308
1308
  requires_env: ['GITHUB_TOKEN'],
1309
1309
  recommended: false
1310
1310
  },
@@ -1312,7 +1312,7 @@ const MCP_CATALOG = {
1312
1312
  name: 'GitLab',
1313
1313
  description: 'GitLab repos, issues, MRs',
1314
1314
  type: 'local',
1315
- command: ['npx', '-y', '@anthropic/mcp-gitlab'],
1315
+ command: ['npx', '-y', '@modelcontextprotocol/server-gitlab'],
1316
1316
  requires_env: ['GITLAB_TOKEN'],
1317
1317
  recommended: false
1318
1318
  },
@@ -1320,7 +1320,7 @@ const MCP_CATALOG = {
1320
1320
  name: 'PostgreSQL',
1321
1321
  description: 'Query PostgreSQL databases',
1322
1322
  type: 'local',
1323
- command: ['npx', '-y', '@anthropic/mcp-postgres'],
1323
+ command: ['npx', '-y', '@modelcontextprotocol/server-postgres'],
1324
1324
  requires_env: ['POSTGRES_CONNECTION_STRING'],
1325
1325
  recommended: false
1326
1326
  },
@@ -1328,7 +1328,7 @@ const MCP_CATALOG = {
1328
1328
  name: 'Slack',
1329
1329
  description: 'Slack messages and channels',
1330
1330
  type: 'local',
1331
- command: ['npx', '-y', '@anthropic/mcp-slack'],
1331
+ command: ['npx', '-y', '@modelcontextprotocol/server-slack'],
1332
1332
  requires_env: ['SLACK_TOKEN'],
1333
1333
  recommended: false
1334
1334
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@comfanion/workflow",
3
- "version": "4.36.32",
3
+ "version": "4.36.33",
4
4
  "description": "Initialize OpenCode Workflow system for AI-assisted development with semantic code search",
5
5
  "type": "module",
6
6
  "bin": {
@@ -1,6 +1,6 @@
1
1
  {
2
- "version": "4.36.32",
3
- "buildDate": "2026-01-24T21:03:00.759Z",
2
+ "version": "4.36.33",
3
+ "buildDate": "2026-01-24T21:06:31.157Z",
4
4
  "files": [
5
5
  "config.yaml",
6
6
  "FLOW.yaml",
@@ -58,7 +58,7 @@ servers:
58
58
  category: thinking
59
59
  recommended: true
60
60
  type: local
61
- command: ["npx", "-y", "@anthropic/mcp-sequential-thinking"]
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", "@anthropic/mcp-playwright"]
70
+ command: ["npx", "-y", "@playwright/mcp@latest"]
71
71
  tags: [browser, testing, automation, scraping]
72
72
 
73
73
  chrome-devtools: