@comfanion/workflow 4.36.33 → 4.36.35
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 +11 -1
- package/package.json +1 -1
- package/src/build-info.json +2 -2
package/bin/cli.js
CHANGED
|
@@ -265,6 +265,7 @@ program
|
|
|
265
265
|
{ name: 'sequential-thinking - Enhanced reasoning (recommended)', value: 'sequential-thinking', checked: true },
|
|
266
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: 'figma - Figma design files', value: 'figma', checked: false },
|
|
268
269
|
{ name: 'grep - Search code examples from GitHub', value: 'grep', checked: false },
|
|
269
270
|
{ name: 'github - GitHub repos, issues, PRs', value: 'github', checked: false },
|
|
270
271
|
{ name: 'sentry - Query Sentry issues (OAuth)', value: 'sentry', checked: false },
|
|
@@ -518,6 +519,7 @@ program
|
|
|
518
519
|
'sequential-thinking': { type: 'local', command: ['npx', '-y', '@modelcontextprotocol/server-sequential-thinking'] },
|
|
519
520
|
'chrome-devtools': { type: 'local', command: ['npx', '-y', 'chrome-devtools-mcp@latest'] },
|
|
520
521
|
'playwright': { type: 'local', command: ['npx', '-y', '@playwright/mcp@latest'] },
|
|
522
|
+
'figma': { type: 'local', command: ['npx', '-y', 'figma-mcp'] },
|
|
521
523
|
'github': { type: 'local', command: ['npx', '-y', '@modelcontextprotocol/server-github'] },
|
|
522
524
|
'postgres': { type: 'local', command: ['npx', '-y', '@modelcontextprotocol/server-postgres'] }
|
|
523
525
|
};
|
|
@@ -1300,7 +1302,15 @@ const MCP_CATALOG = {
|
|
|
1300
1302
|
command: ['npx', '-y', 'chrome-devtools-mcp@latest'],
|
|
1301
1303
|
recommended: false
|
|
1302
1304
|
},
|
|
1303
|
-
'
|
|
1305
|
+
'figma': {
|
|
1306
|
+
name: 'Figma',
|
|
1307
|
+
description: 'Figma design files and components',
|
|
1308
|
+
type: 'local',
|
|
1309
|
+
command: ['npx', '-y', 'figma-mcp'],
|
|
1310
|
+
requires_env: ['FIGMA_ACCESS_TOKEN'],
|
|
1311
|
+
recommended: false
|
|
1312
|
+
},
|
|
1313
|
+
'github': {
|
|
1304
1314
|
name: 'GitHub',
|
|
1305
1315
|
description: 'GitHub repos, issues, PRs',
|
|
1306
1316
|
type: 'local',
|
package/package.json
CHANGED
package/src/build-info.json
CHANGED