@nerviq/cli 1.18.0 → 1.20.0
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/LICENSE +23 -23
- package/README.md +2 -2
- package/bin/cli.js +131 -130
- package/package.json +2 -1
- package/src/activity.js +1039 -1039
- package/src/adoption-advisor.js +299 -299
- package/src/aider/config-parser.js +166 -166
- package/src/aider/context.js +158 -158
- package/src/aider/deep-review.js +316 -316
- package/src/aider/domain-packs.js +303 -303
- package/src/aider/freshness.js +93 -93
- package/src/aider/governance.js +253 -253
- package/src/aider/interactive.js +334 -334
- package/src/aider/mcp-packs.js +329 -329
- package/src/aider/patch.js +214 -214
- package/src/aider/plans.js +186 -186
- package/src/aider/premium.js +360 -360
- package/src/aider/setup.js +404 -404
- package/src/aider/techniques.js +16 -16
- package/src/analyze.js +951 -951
- package/src/anti-patterns.js +485 -485
- package/src/audit/instruction-files.js +180 -180
- package/src/audit/recommendations.js +577 -577
- package/src/auto-suggest.js +154 -154
- package/src/badge.js +13 -13
- package/src/behavioral-drift.js +801 -801
- package/src/benchmark.js +67 -67
- package/src/catalog.js +103 -103
- package/src/certification.js +128 -128
- package/src/codex/config-parser.js +183 -183
- package/src/codex/context.js +223 -223
- package/src/codex/deep-review.js +493 -493
- package/src/codex/domain-packs.js +394 -394
- package/src/codex/freshness.js +84 -84
- package/src/codex/governance.js +192 -192
- package/src/codex/interactive.js +618 -618
- package/src/codex/mcp-packs.js +914 -914
- package/src/codex/patch.js +209 -209
- package/src/codex/plans.js +251 -251
- package/src/codex/premium.js +614 -614
- package/src/codex/setup.js +591 -591
- package/src/context.js +320 -320
- package/src/continuous-ops.js +681 -681
- package/src/copilot/activity.js +309 -309
- package/src/copilot/deep-review.js +346 -346
- package/src/copilot/domain-packs.js +372 -372
- package/src/copilot/freshness.js +57 -57
- package/src/copilot/governance.js +222 -222
- package/src/copilot/interactive.js +406 -406
- package/src/copilot/mcp-packs.js +826 -826
- package/src/copilot/plans.js +253 -253
- package/src/copilot/premium.js +451 -451
- package/src/copilot/setup.js +488 -488
- package/src/cost-tracking.js +61 -61
- package/src/cursor/activity.js +301 -301
- package/src/cursor/config-parser.js +265 -265
- package/src/cursor/context.js +256 -256
- package/src/cursor/deep-review.js +334 -334
- package/src/cursor/domain-packs.js +368 -368
- package/src/cursor/freshness.js +65 -65
- package/src/cursor/governance.js +229 -229
- package/src/cursor/interactive.js +391 -391
- package/src/cursor/mcp-packs.js +828 -828
- package/src/cursor/plans.js +254 -254
- package/src/cursor/premium.js +469 -469
- package/src/cursor/setup.js +488 -488
- package/src/dashboard.js +493 -493
- package/src/deep-review.js +428 -428
- package/src/deprecation.js +98 -98
- package/src/diff-only.js +280 -280
- package/src/doctor.js +119 -119
- package/src/domain-pack-expansion.js +1033 -1033
- package/src/domain-packs.js +387 -387
- package/src/feedback.js +178 -178
- package/src/fix-engine.js +783 -783
- package/src/fix-prompts.js +122 -122
- package/src/formatters/sarif.js +115 -115
- package/src/freshness.js +74 -74
- package/src/gemini/config-parser.js +275 -275
- package/src/gemini/context.js +290 -221
- package/src/gemini/deep-review.js +559 -559
- package/src/gemini/domain-packs.js +393 -393
- package/src/gemini/freshness.js +66 -66
- package/src/gemini/governance.js +201 -201
- package/src/gemini/interactive.js +860 -860
- package/src/gemini/mcp-packs.js +915 -915
- package/src/gemini/plans.js +269 -269
- package/src/gemini/premium.js +760 -760
- package/src/gemini/setup.js +692 -692
- package/src/gemini/techniques.js +105 -33
- package/src/governance.js +72 -72
- package/src/harmony/add.js +68 -68
- package/src/harmony/advisor.js +333 -333
- package/src/harmony/canon.js +565 -565
- package/src/harmony/cli.js +591 -591
- package/src/harmony/drift.js +401 -401
- package/src/harmony/governance.js +313 -313
- package/src/harmony/memory.js +239 -239
- package/src/harmony/sync.js +475 -475
- package/src/harmony/watch.js +370 -370
- package/src/hook-validation.js +342 -342
- package/src/index.js +271 -271
- package/src/init.js +184 -184
- package/src/instruction-surfaces.js +185 -185
- package/src/integrations.js +144 -144
- package/src/interactive.js +118 -118
- package/src/locales/en.json +1 -1
- package/src/locales/es.json +1 -1
- package/src/mcp-packs.js +830 -830
- package/src/mcp-server.js +726 -726
- package/src/mcp-validation.js +337 -337
- package/src/nerviq-sync.json +7 -7
- package/src/opencode/config-parser.js +109 -109
- package/src/opencode/context.js +247 -247
- package/src/opencode/deep-review.js +313 -313
- package/src/opencode/domain-packs.js +262 -262
- package/src/opencode/freshness.js +66 -66
- package/src/opencode/governance.js +159 -159
- package/src/opencode/interactive.js +392 -392
- package/src/opencode/mcp-packs.js +705 -705
- package/src/opencode/patch.js +184 -184
- package/src/opencode/plans.js +231 -231
- package/src/opencode/premium.js +413 -413
- package/src/opencode/setup.js +449 -449
- package/src/opencode/techniques.js +27 -27
- package/src/operating-profile.js +574 -574
- package/src/org.js +152 -152
- package/src/permission-rules.js +218 -218
- package/src/plans.js +839 -839
- package/src/platform-change-manifest.js +86 -86
- package/src/plugins.js +110 -110
- package/src/policy-layers.js +210 -210
- package/src/profiles.js +124 -124
- package/src/prompt-injection.js +74 -74
- package/src/public-api.js +173 -173
- package/src/recommendation-rules.js +84 -84
- package/src/repo-archetype.js +386 -386
- package/src/secret-patterns.js +39 -39
- package/src/server.js +527 -527
- package/src/setup/analysis.js +607 -607
- package/src/setup/runtime.js +172 -172
- package/src/setup.js +677 -677
- package/src/shared/capabilities.js +194 -194
- package/src/source-urls.js +132 -132
- package/src/stack-checks.js +565 -565
- package/src/supplemental-checks.js +13 -13
- package/src/synergy/adaptive.js +261 -261
- package/src/synergy/compensation.js +137 -137
- package/src/synergy/evidence.js +193 -193
- package/src/synergy/learning.js +199 -199
- package/src/synergy/patterns.js +227 -227
- package/src/synergy/ranking.js +83 -83
- package/src/synergy/report.js +165 -165
- package/src/synergy/routing.js +146 -146
- package/src/techniques/api.js +407 -407
- package/src/techniques/automation.js +316 -316
- package/src/techniques/compliance.js +257 -257
- package/src/techniques/hygiene.js +294 -294
- package/src/techniques/instructions.js +243 -243
- package/src/techniques/observability.js +226 -226
- package/src/techniques/optimization.js +142 -142
- package/src/techniques/quality.js +318 -318
- package/src/techniques/security.js +237 -237
- package/src/techniques/shared.js +443 -443
- package/src/techniques/stacks.js +2294 -2294
- package/src/techniques/tools.js +106 -106
- package/src/techniques/workflow.js +413 -413
- package/src/techniques.js +81 -81
- package/src/terminology.js +73 -73
- package/src/token-estimate.js +35 -35
- package/src/usage-patterns.js +99 -99
- package/src/verification-metadata.js +145 -145
- package/src/watch.js +247 -247
- package/src/windsurf/activity.js +302 -302
- package/src/windsurf/config-parser.js +267 -267
- package/src/windsurf/context.js +249 -249
- package/src/windsurf/deep-review.js +337 -337
- package/src/windsurf/domain-packs.js +370 -370
- package/src/windsurf/freshness.js +36 -36
- package/src/windsurf/governance.js +231 -231
- package/src/windsurf/interactive.js +388 -388
- package/src/windsurf/mcp-packs.js +792 -792
- package/src/windsurf/plans.js +247 -247
- package/src/windsurf/premium.js +468 -468
- package/src/windsurf/setup.js +471 -471
- package/src/windsurf/techniques.js +17 -17
- package/src/workspace.js +375 -375
|
@@ -1,705 +1,705 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* OpenCode MCP Pack System — 26 MCP packs
|
|
3
|
-
*
|
|
4
|
-
* MCP config in OpenCode lives in opencode.json under "mcp": { "<name>": { ... } }
|
|
5
|
-
* Uses JSONC format with command/args/environment/tools fields.
|
|
6
|
-
*/
|
|
7
|
-
|
|
8
|
-
const OPENCODE_MCP_PACKS = [
|
|
9
|
-
{
|
|
10
|
-
key: 'context7-docs',
|
|
11
|
-
label: 'Context7 Docs',
|
|
12
|
-
description: 'Live, current framework and library documentation during OpenCode sessions.',
|
|
13
|
-
useWhen: 'Repos that use any framework, library, or SDK and benefit from up-to-date docs.',
|
|
14
|
-
adoption: 'Safe default docs pack for most application repos. No auth required.',
|
|
15
|
-
trustLevel: 'high',
|
|
16
|
-
transport: 'stdio',
|
|
17
|
-
requiredAuth: [],
|
|
18
|
-
serverName: 'context7',
|
|
19
|
-
jsoncProjection: { command: ['npx', '-y', '@upstash/context7-mcp@latest'] },
|
|
20
|
-
enabledTools: ['resolve-library-id', 'get-library-docs'],
|
|
21
|
-
},
|
|
22
|
-
{
|
|
23
|
-
key: 'github-mcp',
|
|
24
|
-
label: 'GitHub',
|
|
25
|
-
description: 'Issue, PR, and repository context during OpenCode sessions.',
|
|
26
|
-
useWhen: 'Repos hosted on GitHub that benefit from issue, PR, and repo context.',
|
|
27
|
-
adoption: 'Recommended for any GitHub-hosted project. Requires GITHUB_PERSONAL_ACCESS_TOKEN.',
|
|
28
|
-
trustLevel: 'medium',
|
|
29
|
-
transport: 'stdio',
|
|
30
|
-
requiredAuth: ['GITHUB_PERSONAL_ACCESS_TOKEN'],
|
|
31
|
-
serverName: 'github',
|
|
32
|
-
jsoncProjection: {
|
|
33
|
-
command: ['npx', '-y', '@modelcontextprotocol/server-github'],
|
|
34
|
-
environment: { GITHUB_PERSONAL_ACCESS_TOKEN: '${GITHUB_PERSONAL_ACCESS_TOKEN}' },
|
|
35
|
-
},
|
|
36
|
-
enabledTools: ['list_issues', 'get_issue', 'search_issues', 'list_pull_requests', 'get_pull_request', 'get_file_contents', 'search_code'],
|
|
37
|
-
},
|
|
38
|
-
{
|
|
39
|
-
key: 'playwright-mcp',
|
|
40
|
-
label: 'Playwright Browser',
|
|
41
|
-
description: 'Browser automation, E2E testing, and visual QA.',
|
|
42
|
-
useWhen: 'Frontend repos with E2E tests or browser-based workflows.',
|
|
43
|
-
adoption: 'Recommended for frontend-ui repos with E2E tests. No auth required.',
|
|
44
|
-
trustLevel: 'medium',
|
|
45
|
-
transport: 'stdio',
|
|
46
|
-
requiredAuth: [],
|
|
47
|
-
serverName: 'playwright',
|
|
48
|
-
jsoncProjection: { command: ['npx', '-y', '@playwright/mcp@latest'] },
|
|
49
|
-
enabledTools: ['browser_navigate', 'browser_screenshot', 'browser_click', 'browser_type', 'browser_wait_for_selector'],
|
|
50
|
-
},
|
|
51
|
-
{
|
|
52
|
-
key: 'postgres-mcp',
|
|
53
|
-
label: 'PostgreSQL',
|
|
54
|
-
description: 'Schema inspection and query assistance for PostgreSQL databases.',
|
|
55
|
-
useWhen: 'Repos with PostgreSQL databases that benefit from schema and query context.',
|
|
56
|
-
adoption: 'Useful for backend-api and data-pipeline repos. Requires DATABASE_URL.',
|
|
57
|
-
trustLevel: 'low',
|
|
58
|
-
transport: 'stdio',
|
|
59
|
-
requiredAuth: ['DATABASE_URL'],
|
|
60
|
-
serverName: 'postgres',
|
|
61
|
-
jsoncProjection: {
|
|
62
|
-
command: ['npx', '-y', '@modelcontextprotocol/server-postgres', '${DATABASE_URL}'],
|
|
63
|
-
},
|
|
64
|
-
enabledTools: ['query', 'list_tables', 'describe_table'],
|
|
65
|
-
},
|
|
66
|
-
{
|
|
67
|
-
key: 'memory-mcp',
|
|
68
|
-
label: 'Memory / Knowledge Graph',
|
|
69
|
-
description: 'Persistent entity and relationship tracking across OpenCode sessions.',
|
|
70
|
-
useWhen: 'Long-running or complex projects with many interconnected concepts.',
|
|
71
|
-
adoption: 'Safe for any repo. Stores data locally. No auth required.',
|
|
72
|
-
trustLevel: 'high',
|
|
73
|
-
transport: 'stdio',
|
|
74
|
-
requiredAuth: [],
|
|
75
|
-
serverName: 'memory',
|
|
76
|
-
jsoncProjection: { command: ['npx', '-y', '@modelcontextprotocol/server-memory'] },
|
|
77
|
-
enabledTools: ['create_entities', 'create_relations', 'search_nodes', 'open_nodes', 'read_graph'],
|
|
78
|
-
},
|
|
79
|
-
{
|
|
80
|
-
key: 'sequential-thinking',
|
|
81
|
-
label: 'Sequential Thinking',
|
|
82
|
-
description: 'Structured step-by-step reasoning for complex problem-solving.',
|
|
83
|
-
useWhen: 'Complex problem-solving sessions that benefit from structured reasoning.',
|
|
84
|
-
adoption: 'Safe default for any repo. No auth required.',
|
|
85
|
-
trustLevel: 'high',
|
|
86
|
-
transport: 'stdio',
|
|
87
|
-
requiredAuth: [],
|
|
88
|
-
serverName: 'sequential-thinking',
|
|
89
|
-
jsoncProjection: { command: ['npx', '-y', '@modelcontextprotocol/server-sequential-thinking'] },
|
|
90
|
-
enabledTools: ['sequentialthinking'],
|
|
91
|
-
},
|
|
92
|
-
{
|
|
93
|
-
key: 'filesystem-mcp',
|
|
94
|
-
label: 'Filesystem',
|
|
95
|
-
description: 'Read-only filesystem access for documentation and reference files.',
|
|
96
|
-
useWhen: 'Repos with reference files, docs, or config that OpenCode needs to read.',
|
|
97
|
-
adoption: 'Read-only default. Pass allowed directories as args.',
|
|
98
|
-
trustLevel: 'medium',
|
|
99
|
-
transport: 'stdio',
|
|
100
|
-
requiredAuth: [],
|
|
101
|
-
serverName: 'filesystem',
|
|
102
|
-
jsoncProjection: { command: ['npx', '-y', '@modelcontextprotocol/server-filesystem', '.'] },
|
|
103
|
-
enabledTools: ['read_file', 'list_directory', 'search_files', 'get_file_info'],
|
|
104
|
-
},
|
|
105
|
-
{
|
|
106
|
-
key: 'fetch-mcp',
|
|
107
|
-
label: 'Fetch / HTTP',
|
|
108
|
-
description: 'HTTP access for fetching web pages, APIs, and documentation.',
|
|
109
|
-
useWhen: 'Repos that need HTTP access to external APIs or documentation sources.',
|
|
110
|
-
adoption: 'Useful for repos integrating external services. No auth required.',
|
|
111
|
-
trustLevel: 'medium',
|
|
112
|
-
transport: 'stdio',
|
|
113
|
-
requiredAuth: [],
|
|
114
|
-
serverName: 'fetch',
|
|
115
|
-
jsoncProjection: { command: ['npx', '-y', '@modelcontextprotocol/server-fetch'] },
|
|
116
|
-
enabledTools: ['fetch'],
|
|
117
|
-
},
|
|
118
|
-
{
|
|
119
|
-
key: 'next-devtools',
|
|
120
|
-
label: 'Next.js Devtools',
|
|
121
|
-
description: 'Runtime-aware debugging and framework-specific tooling for Next.js.',
|
|
122
|
-
useWhen: 'Next.js repos that need runtime-aware debugging.',
|
|
123
|
-
adoption: 'Useful companion for frontend-ui repos running Next.js.',
|
|
124
|
-
trustLevel: 'medium',
|
|
125
|
-
transport: 'stdio',
|
|
126
|
-
requiredAuth: [],
|
|
127
|
-
serverName: 'next-devtools',
|
|
128
|
-
jsoncProjection: { command: ['npx', '-y', 'next-devtools-mcp@latest'] },
|
|
129
|
-
enabledTools: ['get_page_info', 'get_routes', 'get_components'],
|
|
130
|
-
},
|
|
131
|
-
{
|
|
132
|
-
key: 'docker-mcp',
|
|
133
|
-
label: 'Docker',
|
|
134
|
-
description: 'Container management during OpenCode sessions.',
|
|
135
|
-
useWhen: 'Repos with containerized workflows.',
|
|
136
|
-
adoption: 'Requires Docker running locally.',
|
|
137
|
-
trustLevel: 'medium',
|
|
138
|
-
transport: 'stdio',
|
|
139
|
-
requiredAuth: [],
|
|
140
|
-
serverName: 'docker',
|
|
141
|
-
jsoncProjection: { command: ['npx', '-y', '@hypnosis/docker-mcp-server'] },
|
|
142
|
-
enabledTools: ['list_containers', 'container_logs', 'container_inspect'],
|
|
143
|
-
},
|
|
144
|
-
{
|
|
145
|
-
key: 'notion-mcp',
|
|
146
|
-
label: 'Notion',
|
|
147
|
-
description: 'Access Notion documentation and wikis.',
|
|
148
|
-
useWhen: 'Teams using Notion for docs or knowledge bases.',
|
|
149
|
-
adoption: 'Requires NOTION_API_KEY.',
|
|
150
|
-
trustLevel: 'medium',
|
|
151
|
-
transport: 'stdio',
|
|
152
|
-
requiredAuth: ['NOTION_API_KEY'],
|
|
153
|
-
serverName: 'notion',
|
|
154
|
-
jsoncProjection: { command: ['npx', '-y', '@notionhq/notion-mcp-server'], environment: { NOTION_API_KEY: '${NOTION_API_KEY}' } },
|
|
155
|
-
enabledTools: ['search', 'get_page', 'get_database'],
|
|
156
|
-
},
|
|
157
|
-
{
|
|
158
|
-
key: 'linear-mcp',
|
|
159
|
-
label: 'Linear',
|
|
160
|
-
description: 'Issue tracking and sprint context.',
|
|
161
|
-
useWhen: 'Teams using Linear for issue tracking.',
|
|
162
|
-
adoption: 'Requires LINEAR_API_KEY.',
|
|
163
|
-
trustLevel: 'medium',
|
|
164
|
-
transport: 'stdio',
|
|
165
|
-
requiredAuth: ['LINEAR_API_KEY'],
|
|
166
|
-
serverName: 'linear',
|
|
167
|
-
jsoncProjection: { command: ['npx', '-y', '@mseep/linear-mcp'], environment: { LINEAR_API_KEY: '${LINEAR_API_KEY}' } },
|
|
168
|
-
enabledTools: ['list_issues', 'get_issue', 'search_issues'],
|
|
169
|
-
},
|
|
170
|
-
{
|
|
171
|
-
key: 'sentry-mcp',
|
|
172
|
-
label: 'Sentry',
|
|
173
|
-
description: 'Error tracking and debugging context.',
|
|
174
|
-
useWhen: 'Repos with Sentry error tracking.',
|
|
175
|
-
adoption: 'Requires SENTRY_AUTH_TOKEN.',
|
|
176
|
-
trustLevel: 'medium',
|
|
177
|
-
transport: 'stdio',
|
|
178
|
-
requiredAuth: ['SENTRY_AUTH_TOKEN'],
|
|
179
|
-
serverName: 'sentry',
|
|
180
|
-
jsoncProjection: { command: ['npx', '-y', '@sentry/mcp-server'], environment: { SENTRY_AUTH_TOKEN: '${SENTRY_AUTH_TOKEN}' } },
|
|
181
|
-
enabledTools: ['get_issues', 'get_issue_details', 'search_errors'],
|
|
182
|
-
},
|
|
183
|
-
{
|
|
184
|
-
key: 'slack-mcp',
|
|
185
|
-
label: 'Slack',
|
|
186
|
-
description: 'Draft and preview Slack messages.',
|
|
187
|
-
useWhen: 'Teams using Slack for communication.',
|
|
188
|
-
adoption: 'Requires SLACK_BOT_TOKEN.',
|
|
189
|
-
trustLevel: 'low',
|
|
190
|
-
transport: 'stdio',
|
|
191
|
-
requiredAuth: ['SLACK_BOT_TOKEN'],
|
|
192
|
-
serverName: 'slack',
|
|
193
|
-
jsoncProjection: { command: ['npx', '-y', 'slack-mcp-server'], environment: { SLACK_BOT_TOKEN: '${SLACK_BOT_TOKEN}' } },
|
|
194
|
-
enabledTools: ['list_channels', 'post_message', 'search_messages'],
|
|
195
|
-
},
|
|
196
|
-
{
|
|
197
|
-
key: 'stripe-mcp',
|
|
198
|
-
label: 'Stripe',
|
|
199
|
-
description: 'Payment and billing workflow context.',
|
|
200
|
-
useWhen: 'Repos with Stripe integration.',
|
|
201
|
-
adoption: 'Requires STRIPE_API_KEY.',
|
|
202
|
-
trustLevel: 'low',
|
|
203
|
-
transport: 'stdio',
|
|
204
|
-
requiredAuth: ['STRIPE_API_KEY'],
|
|
205
|
-
serverName: 'stripe',
|
|
206
|
-
jsoncProjection: { command: ['npx', '-y', '@stripe/mcp'], environment: { STRIPE_API_KEY: '${STRIPE_API_KEY}' } },
|
|
207
|
-
enabledTools: ['list_products', 'get_subscription', 'search_customers'],
|
|
208
|
-
},
|
|
209
|
-
{
|
|
210
|
-
key: 'figma-mcp',
|
|
211
|
-
label: 'Figma',
|
|
212
|
-
description: 'Design file access and component inspection.',
|
|
213
|
-
useWhen: 'Design-heavy repos needing Figma access.',
|
|
214
|
-
adoption: 'Requires FIGMA_ACCESS_TOKEN.',
|
|
215
|
-
trustLevel: 'medium',
|
|
216
|
-
transport: 'stdio',
|
|
217
|
-
requiredAuth: ['FIGMA_ACCESS_TOKEN'],
|
|
218
|
-
serverName: 'figma',
|
|
219
|
-
jsoncProjection: { command: ['npx', '-y', 'claude-talk-to-figma-mcp'], environment: { FIGMA_ACCESS_TOKEN: '${FIGMA_ACCESS_TOKEN}' } },
|
|
220
|
-
enabledTools: ['get_file', 'get_components', 'get_styles'],
|
|
221
|
-
},
|
|
222
|
-
{
|
|
223
|
-
key: 'mcp-security',
|
|
224
|
-
label: 'MCP Security Scanner',
|
|
225
|
-
description: 'Scan MCP servers for tool poisoning and prompt injection.',
|
|
226
|
-
useWhen: 'Any repo with 2+ MCP servers.',
|
|
227
|
-
adoption: 'Safety companion for multi-MCP setups.',
|
|
228
|
-
trustLevel: 'high',
|
|
229
|
-
transport: 'stdio',
|
|
230
|
-
requiredAuth: [],
|
|
231
|
-
serverName: 'mcp-scan',
|
|
232
|
-
jsoncProjection: { command: ['npx', '-y', 'mcp-scan@latest'] },
|
|
233
|
-
enabledTools: ['scan_servers', 'check_tools'],
|
|
234
|
-
},
|
|
235
|
-
{
|
|
236
|
-
key: 'composio-mcp',
|
|
237
|
-
label: 'Composio Universal',
|
|
238
|
-
description: '500+ integrations through a single MCP gateway.',
|
|
239
|
-
useWhen: 'Enterprise or integration-heavy repos.',
|
|
240
|
-
adoption: 'Requires COMPOSIO_API_KEY.',
|
|
241
|
-
trustLevel: 'medium',
|
|
242
|
-
transport: 'stdio',
|
|
243
|
-
requiredAuth: ['COMPOSIO_API_KEY'],
|
|
244
|
-
serverName: 'composio',
|
|
245
|
-
jsoncProjection: { command: ['npx', '-y', '@composio/mcp'], environment: { COMPOSIO_API_KEY: '${COMPOSIO_API_KEY}' } },
|
|
246
|
-
enabledTools: [],
|
|
247
|
-
},
|
|
248
|
-
{
|
|
249
|
-
key: 'jira-confluence',
|
|
250
|
-
label: 'Jira',
|
|
251
|
-
description: 'Issue tracking and project management.',
|
|
252
|
-
useWhen: 'Teams using Atlassian Jira.',
|
|
253
|
-
adoption: 'Requires ATLASSIAN_API_TOKEN and ATLASSIAN_EMAIL.',
|
|
254
|
-
trustLevel: 'medium',
|
|
255
|
-
transport: 'stdio',
|
|
256
|
-
requiredAuth: ['ATLASSIAN_API_TOKEN', 'ATLASSIAN_EMAIL'],
|
|
257
|
-
serverName: 'jira',
|
|
258
|
-
jsoncProjection: { command: ['npx', '-y', 'jira-mcp'], environment: { ATLASSIAN_API_TOKEN: '${ATLASSIAN_API_TOKEN}', ATLASSIAN_EMAIL: '${ATLASSIAN_EMAIL}' } },
|
|
259
|
-
enabledTools: ['list_issues', 'get_issue', 'search_issues'],
|
|
260
|
-
},
|
|
261
|
-
{
|
|
262
|
-
key: 'ga4-analytics',
|
|
263
|
-
label: 'Google Analytics 4',
|
|
264
|
-
description: 'Live GA4 data, attribution, and audience insights.',
|
|
265
|
-
useWhen: 'Repos with web analytics needs.',
|
|
266
|
-
adoption: 'Requires GA4_PROPERTY_ID and GOOGLE_APPLICATION_CREDENTIALS.',
|
|
267
|
-
trustLevel: 'medium',
|
|
268
|
-
transport: 'stdio',
|
|
269
|
-
requiredAuth: ['GA4_PROPERTY_ID', 'GOOGLE_APPLICATION_CREDENTIALS'],
|
|
270
|
-
serverName: 'ga4',
|
|
271
|
-
jsoncProjection: { command: ['npx', '-y', 'mcp-server-ga4'], environment: { GA4_PROPERTY_ID: '${GA4_PROPERTY_ID}', GOOGLE_APPLICATION_CREDENTIALS: '${GOOGLE_APPLICATION_CREDENTIALS}' } },
|
|
272
|
-
enabledTools: ['run_report', 'get_metadata'],
|
|
273
|
-
},
|
|
274
|
-
{
|
|
275
|
-
key: 'search-console',
|
|
276
|
-
label: 'Google Search Console',
|
|
277
|
-
description: 'Search performance and indexing data.',
|
|
278
|
-
useWhen: 'SEO-focused repos.',
|
|
279
|
-
adoption: 'Requires Google OAuth credentials.',
|
|
280
|
-
trustLevel: 'medium',
|
|
281
|
-
transport: 'stdio',
|
|
282
|
-
requiredAuth: ['GOOGLE_CLIENT_ID', 'GOOGLE_CLIENT_SECRET'],
|
|
283
|
-
serverName: 'gsc',
|
|
284
|
-
jsoncProjection: { command: ['npx', '-y', 'mcp-gsc@latest'], environment: { GOOGLE_CLIENT_ID: '${GOOGLE_CLIENT_ID}', GOOGLE_CLIENT_SECRET: '${GOOGLE_CLIENT_SECRET}' } },
|
|
285
|
-
enabledTools: ['search_analytics', 'get_sitemaps'],
|
|
286
|
-
},
|
|
287
|
-
{
|
|
288
|
-
key: 'n8n-workflows',
|
|
289
|
-
label: 'n8n Workflow Automation',
|
|
290
|
-
description: 'Workflow automation with 1,396 integration nodes.',
|
|
291
|
-
useWhen: 'Teams using n8n for workflow automation.',
|
|
292
|
-
adoption: 'Requires N8N_URL and N8N_API_KEY.',
|
|
293
|
-
trustLevel: 'medium',
|
|
294
|
-
transport: 'stdio',
|
|
295
|
-
requiredAuth: ['N8N_URL', 'N8N_API_KEY'],
|
|
296
|
-
serverName: 'n8n',
|
|
297
|
-
jsoncProjection: { command: ['npx', '-y', 'n8n-mcp-server@latest'], environment: { N8N_URL: '${N8N_URL}', N8N_API_KEY: '${N8N_API_KEY}' } },
|
|
298
|
-
enabledTools: ['list_workflows', 'execute_workflow'],
|
|
299
|
-
},
|
|
300
|
-
{
|
|
301
|
-
key: 'zendesk-mcp',
|
|
302
|
-
label: 'Zendesk',
|
|
303
|
-
description: 'Ticket management and help center content.',
|
|
304
|
-
useWhen: 'Support teams using Zendesk.',
|
|
305
|
-
adoption: 'Requires ZENDESK_API_TOKEN and ZENDESK_SUBDOMAIN.',
|
|
306
|
-
trustLevel: 'medium',
|
|
307
|
-
transport: 'stdio',
|
|
308
|
-
requiredAuth: ['ZENDESK_API_TOKEN', 'ZENDESK_SUBDOMAIN'],
|
|
309
|
-
serverName: 'zendesk',
|
|
310
|
-
jsoncProjection: { command: ['npx', '-y', 'zendesk-mcp'], environment: { ZENDESK_API_TOKEN: '${ZENDESK_API_TOKEN}', ZENDESK_SUBDOMAIN: '${ZENDESK_SUBDOMAIN}' } },
|
|
311
|
-
enabledTools: ['list_tickets', 'get_ticket', 'search_tickets'],
|
|
312
|
-
},
|
|
313
|
-
{
|
|
314
|
-
key: 'infisical-secrets',
|
|
315
|
-
label: 'Infisical Secrets',
|
|
316
|
-
description: 'Secrets management with auto-rotation.',
|
|
317
|
-
useWhen: 'Repos using Infisical for secrets.',
|
|
318
|
-
adoption: 'Requires INFISICAL_TOKEN.',
|
|
319
|
-
trustLevel: 'low',
|
|
320
|
-
transport: 'stdio',
|
|
321
|
-
requiredAuth: ['INFISICAL_TOKEN'],
|
|
322
|
-
serverName: 'infisical',
|
|
323
|
-
jsoncProjection: { command: ['npx', '-y', '@infisical/mcp'], environment: { INFISICAL_TOKEN: '${INFISICAL_TOKEN}' } },
|
|
324
|
-
enabledTools: ['get_secret', 'list_secrets'],
|
|
325
|
-
},
|
|
326
|
-
{
|
|
327
|
-
key: 'shopify-mcp',
|
|
328
|
-
label: 'Shopify',
|
|
329
|
-
description: 'Shopify API and deployment tooling.',
|
|
330
|
-
useWhen: 'Shopify stores and apps.',
|
|
331
|
-
adoption: 'Requires SHOPIFY_ACCESS_TOKEN.',
|
|
332
|
-
trustLevel: 'medium',
|
|
333
|
-
transport: 'stdio',
|
|
334
|
-
requiredAuth: ['SHOPIFY_ACCESS_TOKEN'],
|
|
335
|
-
serverName: 'shopify',
|
|
336
|
-
jsoncProjection: { command: ['npx', '-y', 'shopify-mcp'], environment: { SHOPIFY_ACCESS_TOKEN: '${SHOPIFY_ACCESS_TOKEN}' } },
|
|
337
|
-
enabledTools: ['get_products', 'get_orders'],
|
|
338
|
-
},
|
|
339
|
-
{
|
|
340
|
-
key: 'huggingface-mcp',
|
|
341
|
-
label: 'Hugging Face',
|
|
342
|
-
description: 'Model search, dataset discovery, and Spaces.',
|
|
343
|
-
useWhen: 'AI/ML repos needing model registry access.',
|
|
344
|
-
adoption: 'Requires HF_TOKEN.',
|
|
345
|
-
trustLevel: 'medium',
|
|
346
|
-
transport: 'stdio',
|
|
347
|
-
requiredAuth: ['HF_TOKEN'],
|
|
348
|
-
serverName: 'huggingface',
|
|
349
|
-
jsoncProjection: { command: ['npx', '-y', 'huggingface-mcp-server'], environment: { HF_TOKEN: '${HF_TOKEN}' } },
|
|
350
|
-
enabledTools: ['search_models', 'get_model_info', 'search_datasets'],
|
|
351
|
-
},
|
|
352
|
-
// ── 23 new packs ─────────────────────────────────────────────────────────
|
|
353
|
-
{
|
|
354
|
-
key: 'supabase-mcp', label: 'Supabase',
|
|
355
|
-
description: 'Database, auth, and storage for Supabase.',
|
|
356
|
-
useWhen: 'Repos using Supabase.',
|
|
357
|
-
adoption: 'Requires: SUPABASE_URL, SUPABASE_SERVICE_ROLE_KEY.',
|
|
358
|
-
trustLevel: 'medium', transport: 'stdio', requiredAuth: ['SUPABASE_URL', 'SUPABASE_SERVICE_ROLE_KEY'],
|
|
359
|
-
serverName: 'supabase',
|
|
360
|
-
jsoncProjection: { command: ['npx', '-y', '@supabase/mcp-server-supabase@latest'], environment: { SUPABASE_URL: '${SUPABASE_URL}', SUPABASE_SERVICE_ROLE_KEY: '${SUPABASE_SERVICE_ROLE_KEY}' } },
|
|
361
|
-
enabledTools: ['list_tables', 'query', 'insert', 'update'],
|
|
362
|
-
},
|
|
363
|
-
{
|
|
364
|
-
key: 'prisma-mcp', label: 'Prisma ORM',
|
|
365
|
-
description: 'Schema inspection and migrations via Prisma.',
|
|
366
|
-
useWhen: 'Repos with a Prisma schema.',
|
|
367
|
-
adoption: 'Requires: DATABASE_URL.',
|
|
368
|
-
trustLevel: 'medium', transport: 'stdio', requiredAuth: ['DATABASE_URL'],
|
|
369
|
-
serverName: 'prisma',
|
|
370
|
-
jsoncProjection: { command: ['npx', '-y', 'prisma-mcp-server@latest'], environment: { DATABASE_URL: '${DATABASE_URL}' } },
|
|
371
|
-
enabledTools: ['introspect_schema', 'list_models', 'query_raw'],
|
|
372
|
-
},
|
|
373
|
-
{
|
|
374
|
-
key: 'vercel-mcp', label: 'Vercel',
|
|
375
|
-
description: 'Deployment management via Vercel.',
|
|
376
|
-
useWhen: 'Repos deployed on Vercel.',
|
|
377
|
-
adoption: 'Requires: VERCEL_TOKEN.',
|
|
378
|
-
trustLevel: 'medium', transport: 'stdio', requiredAuth: ['VERCEL_TOKEN'],
|
|
379
|
-
serverName: 'vercel',
|
|
380
|
-
jsoncProjection: { command: ['npx', '-y', '@vercel/mcp-server@latest'], environment: { VERCEL_TOKEN: '${VERCEL_TOKEN}' } },
|
|
381
|
-
enabledTools: ['list_projects', 'get_deployment', 'list_deployments'],
|
|
382
|
-
},
|
|
383
|
-
{
|
|
384
|
-
key: 'cloudflare-mcp', label: 'Cloudflare',
|
|
385
|
-
description: 'Workers, KV, R2, and D1 management.',
|
|
386
|
-
useWhen: 'Repos using Cloudflare edge.',
|
|
387
|
-
adoption: 'Requires: CLOUDFLARE_API_TOKEN.',
|
|
388
|
-
trustLevel: 'medium', transport: 'stdio', requiredAuth: ['CLOUDFLARE_API_TOKEN'],
|
|
389
|
-
serverName: 'cloudflare',
|
|
390
|
-
jsoncProjection: { command: ['npx', '-y', '@cloudflare/mcp-server-cloudflare@latest'], environment: { CLOUDFLARE_API_TOKEN: '${CLOUDFLARE_API_TOKEN}' } },
|
|
391
|
-
enabledTools: ['list_workers', 'get_kv', 'list_r2_buckets'],
|
|
392
|
-
},
|
|
393
|
-
{
|
|
394
|
-
key: 'aws-mcp', label: 'AWS',
|
|
395
|
-
description: 'S3, Lambda, DynamoDB access.',
|
|
396
|
-
useWhen: 'Repos using AWS.',
|
|
397
|
-
adoption: 'Requires: AWS_ACCESS_KEY_ID, AWS_SECRET_ACCESS_KEY, AWS_REGION.',
|
|
398
|
-
trustLevel: 'low', transport: 'stdio', requiredAuth: ['AWS_ACCESS_KEY_ID', 'AWS_SECRET_ACCESS_KEY', 'AWS_REGION'],
|
|
399
|
-
serverName: 'aws',
|
|
400
|
-
jsoncProjection: { command: ['npx', '-y', '@aws-samples/mcp-server-aws@latest'], environment: { AWS_ACCESS_KEY_ID: '${AWS_ACCESS_KEY_ID}', AWS_SECRET_ACCESS_KEY: '${AWS_SECRET_ACCESS_KEY}', AWS_REGION: '${AWS_REGION}' } },
|
|
401
|
-
enabledTools: ['list_buckets', 'list_functions', 'list_tables'],
|
|
402
|
-
},
|
|
403
|
-
{
|
|
404
|
-
key: 'redis-mcp', label: 'Redis',
|
|
405
|
-
description: 'Cache and session management.',
|
|
406
|
-
useWhen: 'Repos using Redis.',
|
|
407
|
-
adoption: 'Requires: REDIS_URL.',
|
|
408
|
-
trustLevel: 'medium', transport: 'stdio', requiredAuth: ['REDIS_URL'],
|
|
409
|
-
serverName: 'redis',
|
|
410
|
-
jsoncProjection: { command: ['npx', '-y', 'redis-mcp-server@latest'], environment: { REDIS_URL: '${REDIS_URL}' } },
|
|
411
|
-
enabledTools: ['get', 'set', 'del', 'hget', 'hset'],
|
|
412
|
-
},
|
|
413
|
-
{
|
|
414
|
-
key: 'mongodb-mcp', label: 'MongoDB',
|
|
415
|
-
description: 'Document database access.',
|
|
416
|
-
useWhen: 'Repos using MongoDB.',
|
|
417
|
-
adoption: 'Requires: MONGODB_URI.',
|
|
418
|
-
trustLevel: 'medium', transport: 'stdio', requiredAuth: ['MONGODB_URI'],
|
|
419
|
-
serverName: 'mongodb',
|
|
420
|
-
jsoncProjection: { command: ['npx', '-y', '@mongodb-js/mongodb-mcp-server@latest'], environment: { MONGODB_URI: '${MONGODB_URI}' } },
|
|
421
|
-
enabledTools: ['find', 'insertOne', 'updateOne', 'deleteOne'],
|
|
422
|
-
},
|
|
423
|
-
{
|
|
424
|
-
key: 'twilio-mcp', label: 'Twilio',
|
|
425
|
-
description: 'SMS, voice, and messaging.',
|
|
426
|
-
useWhen: 'Repos using Twilio.',
|
|
427
|
-
adoption: 'Requires: TWILIO_ACCOUNT_SID, TWILIO_AUTH_TOKEN.',
|
|
428
|
-
trustLevel: 'low', transport: 'stdio', requiredAuth: ['TWILIO_ACCOUNT_SID', 'TWILIO_AUTH_TOKEN'],
|
|
429
|
-
serverName: 'twilio',
|
|
430
|
-
jsoncProjection: { command: ['npx', '-y', 'twilio-mcp-server@latest'], environment: { TWILIO_ACCOUNT_SID: '${TWILIO_ACCOUNT_SID}', TWILIO_AUTH_TOKEN: '${TWILIO_AUTH_TOKEN}' } },
|
|
431
|
-
enabledTools: ['send_sms', 'list_messages', 'list_calls'],
|
|
432
|
-
},
|
|
433
|
-
{
|
|
434
|
-
key: 'sendgrid-mcp', label: 'SendGrid',
|
|
435
|
-
description: 'Transactional email delivery.',
|
|
436
|
-
useWhen: 'Repos using SendGrid.',
|
|
437
|
-
adoption: 'Requires: SENDGRID_API_KEY.',
|
|
438
|
-
trustLevel: 'medium', transport: 'stdio', requiredAuth: ['SENDGRID_API_KEY'],
|
|
439
|
-
serverName: 'sendgrid',
|
|
440
|
-
jsoncProjection: { command: ['npx', '-y', 'sendgrid-mcp-server@latest'], environment: { SENDGRID_API_KEY: '${SENDGRID_API_KEY}' } },
|
|
441
|
-
enabledTools: ['send_email', 'list_templates', 'get_stats'],
|
|
442
|
-
},
|
|
443
|
-
{
|
|
444
|
-
key: 'algolia-mcp', label: 'Algolia Search',
|
|
445
|
-
description: 'Search indexing via Algolia.',
|
|
446
|
-
useWhen: 'Repos using Algolia.',
|
|
447
|
-
adoption: 'Requires: ALGOLIA_APP_ID, ALGOLIA_API_KEY.',
|
|
448
|
-
trustLevel: 'medium', transport: 'stdio', requiredAuth: ['ALGOLIA_APP_ID', 'ALGOLIA_API_KEY'],
|
|
449
|
-
serverName: 'algolia',
|
|
450
|
-
jsoncProjection: { command: ['npx', '-y', 'algolia-mcp-server@latest'], environment: { ALGOLIA_APP_ID: '${ALGOLIA_APP_ID}', ALGOLIA_API_KEY: '${ALGOLIA_API_KEY}' } },
|
|
451
|
-
enabledTools: ['search', 'list_indices', 'get_index'],
|
|
452
|
-
},
|
|
453
|
-
{
|
|
454
|
-
key: 'planetscale-mcp', label: 'PlanetScale',
|
|
455
|
-
description: 'Serverless MySQL via PlanetScale.',
|
|
456
|
-
useWhen: 'Repos on PlanetScale.',
|
|
457
|
-
adoption: 'Requires: PLANETSCALE_TOKEN.',
|
|
458
|
-
trustLevel: 'medium', transport: 'stdio', requiredAuth: ['PLANETSCALE_TOKEN'],
|
|
459
|
-
serverName: 'planetscale',
|
|
460
|
-
jsoncProjection: { command: ['npx', '-y', 'planetscale-mcp-server@latest'], environment: { PLANETSCALE_TOKEN: '${PLANETSCALE_TOKEN}' } },
|
|
461
|
-
enabledTools: ['list_databases', 'list_branches', 'execute_query'],
|
|
462
|
-
},
|
|
463
|
-
{
|
|
464
|
-
key: 'neon-mcp', label: 'Neon Serverless Postgres',
|
|
465
|
-
description: 'Serverless Postgres via Neon.',
|
|
466
|
-
useWhen: 'Repos using Neon.',
|
|
467
|
-
adoption: 'Requires: NEON_API_KEY.',
|
|
468
|
-
trustLevel: 'medium', transport: 'stdio', requiredAuth: ['NEON_API_KEY'],
|
|
469
|
-
serverName: 'neon',
|
|
470
|
-
jsoncProjection: { command: ['npx', '-y', '@neondatabase/mcp-server-neon@latest'], environment: { NEON_API_KEY: '${NEON_API_KEY}' } },
|
|
471
|
-
enabledTools: ['list_projects', 'list_branches', 'execute_sql'],
|
|
472
|
-
},
|
|
473
|
-
{
|
|
474
|
-
key: 'turso-mcp', label: 'Turso Edge SQLite',
|
|
475
|
-
description: 'Edge SQLite via Turso.',
|
|
476
|
-
useWhen: 'Repos using Turso.',
|
|
477
|
-
adoption: 'Requires: TURSO_DATABASE_URL, TURSO_AUTH_TOKEN.',
|
|
478
|
-
trustLevel: 'medium', transport: 'stdio', requiredAuth: ['TURSO_DATABASE_URL', 'TURSO_AUTH_TOKEN'],
|
|
479
|
-
serverName: 'turso',
|
|
480
|
-
jsoncProjection: { command: ['npx', '-y', 'turso-mcp-server@latest'], environment: { TURSO_DATABASE_URL: '${TURSO_DATABASE_URL}', TURSO_AUTH_TOKEN: '${TURSO_AUTH_TOKEN}' } },
|
|
481
|
-
enabledTools: ['execute_query', 'list_tables'],
|
|
482
|
-
},
|
|
483
|
-
{
|
|
484
|
-
key: 'upstash-mcp', label: 'Upstash Redis+Kafka',
|
|
485
|
-
description: 'Serverless Redis and Kafka.',
|
|
486
|
-
useWhen: 'Repos using Upstash.',
|
|
487
|
-
adoption: 'Requires: UPSTASH_REDIS_REST_URL, UPSTASH_REDIS_REST_TOKEN.',
|
|
488
|
-
trustLevel: 'medium', transport: 'stdio', requiredAuth: ['UPSTASH_REDIS_REST_URL', 'UPSTASH_REDIS_REST_TOKEN'],
|
|
489
|
-
serverName: 'upstash',
|
|
490
|
-
jsoncProjection: { command: ['npx', '-y', '@upstash/mcp-server@latest'], environment: { UPSTASH_REDIS_REST_URL: '${UPSTASH_REDIS_REST_URL}', UPSTASH_REDIS_REST_TOKEN: '${UPSTASH_REDIS_REST_TOKEN}' } },
|
|
491
|
-
enabledTools: ['redis_get', 'redis_set', 'redis_del'],
|
|
492
|
-
},
|
|
493
|
-
{
|
|
494
|
-
key: 'convex-mcp', label: 'Convex',
|
|
495
|
-
description: 'Reactive backend via Convex.',
|
|
496
|
-
useWhen: 'Repos using Convex.',
|
|
497
|
-
adoption: 'Requires: CONVEX_DEPLOYMENT.',
|
|
498
|
-
trustLevel: 'medium', transport: 'stdio', requiredAuth: ['CONVEX_DEPLOYMENT'],
|
|
499
|
-
serverName: 'convex',
|
|
500
|
-
jsoncProjection: { command: ['npx', '-y', '@convex-dev/mcp-server@latest'], environment: { CONVEX_DEPLOYMENT: '${CONVEX_DEPLOYMENT}' } },
|
|
501
|
-
enabledTools: ['run_query', 'run_mutation', 'list_functions'],
|
|
502
|
-
},
|
|
503
|
-
{
|
|
504
|
-
key: 'clerk-mcp', label: 'Clerk Authentication',
|
|
505
|
-
description: 'User auth via Clerk.',
|
|
506
|
-
useWhen: 'Repos using Clerk.',
|
|
507
|
-
adoption: 'Requires: CLERK_SECRET_KEY.',
|
|
508
|
-
trustLevel: 'medium', transport: 'stdio', requiredAuth: ['CLERK_SECRET_KEY'],
|
|
509
|
-
serverName: 'clerk',
|
|
510
|
-
jsoncProjection: { command: ['npx', '-y', '@clerk/mcp-server@latest'], environment: { CLERK_SECRET_KEY: '${CLERK_SECRET_KEY}' } },
|
|
511
|
-
enabledTools: ['list_users', 'get_user', 'create_user'],
|
|
512
|
-
},
|
|
513
|
-
{
|
|
514
|
-
key: 'resend-mcp', label: 'Resend Email',
|
|
515
|
-
description: 'Transactional email via Resend.',
|
|
516
|
-
useWhen: 'Repos using Resend.',
|
|
517
|
-
adoption: 'Requires: RESEND_API_KEY.',
|
|
518
|
-
trustLevel: 'medium', transport: 'stdio', requiredAuth: ['RESEND_API_KEY'],
|
|
519
|
-
serverName: 'resend',
|
|
520
|
-
jsoncProjection: { command: ['npx', '-y', 'resend-mcp-server@latest'], environment: { RESEND_API_KEY: '${RESEND_API_KEY}' } },
|
|
521
|
-
enabledTools: ['send_email', 'list_domains', 'get_email'],
|
|
522
|
-
},
|
|
523
|
-
{
|
|
524
|
-
key: 'temporal-mcp', label: 'Temporal Workflow',
|
|
525
|
-
description: 'Workflow orchestration via Temporal.',
|
|
526
|
-
useWhen: 'Repos using Temporal.',
|
|
527
|
-
adoption: 'Requires: TEMPORAL_ADDRESS.',
|
|
528
|
-
trustLevel: 'medium', transport: 'stdio', requiredAuth: ['TEMPORAL_ADDRESS'],
|
|
529
|
-
serverName: 'temporal',
|
|
530
|
-
jsoncProjection: { command: ['npx', '-y', 'temporal-mcp-server@latest'], environment: { TEMPORAL_ADDRESS: '${TEMPORAL_ADDRESS}' } },
|
|
531
|
-
enabledTools: ['list_workflows', 'get_workflow', 'signal_workflow'],
|
|
532
|
-
},
|
|
533
|
-
{
|
|
534
|
-
key: 'launchdarkly-mcp', label: 'LaunchDarkly',
|
|
535
|
-
description: 'Feature flags via LaunchDarkly.',
|
|
536
|
-
useWhen: 'Repos using LaunchDarkly.',
|
|
537
|
-
adoption: 'Requires: LAUNCHDARKLY_ACCESS_TOKEN.',
|
|
538
|
-
trustLevel: 'medium', transport: 'stdio', requiredAuth: ['LAUNCHDARKLY_ACCESS_TOKEN'],
|
|
539
|
-
serverName: 'launchdarkly',
|
|
540
|
-
jsoncProjection: { command: ['npx', '-y', 'launchdarkly-mcp-server@latest'], environment: { LAUNCHDARKLY_ACCESS_TOKEN: '${LAUNCHDARKLY_ACCESS_TOKEN}' } },
|
|
541
|
-
enabledTools: ['list_flags', 'get_flag', 'toggle_flag'],
|
|
542
|
-
},
|
|
543
|
-
{
|
|
544
|
-
key: 'datadog-mcp', label: 'Datadog',
|
|
545
|
-
description: 'Monitoring and APM via Datadog.',
|
|
546
|
-
useWhen: 'Repos using Datadog.',
|
|
547
|
-
adoption: 'Requires: DATADOG_API_KEY, DATADOG_APP_KEY.',
|
|
548
|
-
trustLevel: 'medium', transport: 'stdio', requiredAuth: ['DATADOG_API_KEY', 'DATADOG_APP_KEY'],
|
|
549
|
-
serverName: 'datadog',
|
|
550
|
-
jsoncProjection: { command: ['npx', '-y', '@datadog/mcp-server@latest'], environment: { DATADOG_API_KEY: '${DATADOG_API_KEY}', DATADOG_APP_KEY: '${DATADOG_APP_KEY}' } },
|
|
551
|
-
enabledTools: ['query_metrics', 'list_monitors', 'search_logs'],
|
|
552
|
-
},
|
|
553
|
-
{
|
|
554
|
-
key: 'grafana-mcp', label: 'Grafana',
|
|
555
|
-
description: 'Dashboards via Grafana.',
|
|
556
|
-
useWhen: 'Repos using Grafana.',
|
|
557
|
-
adoption: 'Requires: GRAFANA_URL, GRAFANA_API_KEY.',
|
|
558
|
-
trustLevel: 'medium', transport: 'stdio', requiredAuth: ['GRAFANA_URL', 'GRAFANA_API_KEY'],
|
|
559
|
-
serverName: 'grafana',
|
|
560
|
-
jsoncProjection: { command: ['npx', '-y', 'grafana-mcp-server@latest'], environment: { GRAFANA_URL: '${GRAFANA_URL}', GRAFANA_API_KEY: '${GRAFANA_API_KEY}' } },
|
|
561
|
-
enabledTools: ['list_dashboards', 'get_panel', 'query_datasource'],
|
|
562
|
-
},
|
|
563
|
-
{
|
|
564
|
-
key: 'circleci-mcp', label: 'CircleCI',
|
|
565
|
-
description: 'CI/CD via CircleCI.',
|
|
566
|
-
useWhen: 'Repos using CircleCI.',
|
|
567
|
-
adoption: 'Requires: CIRCLECI_TOKEN.',
|
|
568
|
-
trustLevel: 'medium', transport: 'stdio', requiredAuth: ['CIRCLECI_TOKEN'],
|
|
569
|
-
serverName: 'circleci',
|
|
570
|
-
jsoncProjection: { command: ['npx', '-y', 'circleci-mcp-server@latest'], environment: { CIRCLECI_TOKEN: '${CIRCLECI_TOKEN}' } },
|
|
571
|
-
enabledTools: ['list_pipelines', 'get_pipeline', 'list_jobs'],
|
|
572
|
-
},
|
|
573
|
-
{
|
|
574
|
-
key: 'anthropic-mcp', label: 'Anthropic Claude API',
|
|
575
|
-
description: 'Claude API for AI-powered apps.',
|
|
576
|
-
useWhen: 'Repos building on Claude API.',
|
|
577
|
-
adoption: 'Requires: ANTHROPIC_API_KEY.',
|
|
578
|
-
trustLevel: 'high', transport: 'stdio', requiredAuth: ['ANTHROPIC_API_KEY'],
|
|
579
|
-
serverName: 'anthropic',
|
|
580
|
-
jsoncProjection: { command: ['npx', '-y', '@anthropic-ai/mcp-server@latest'], environment: { ANTHROPIC_API_KEY: '${ANTHROPIC_API_KEY}' } },
|
|
581
|
-
enabledTools: ['create_message', 'list_models'],
|
|
582
|
-
},
|
|
583
|
-
];
|
|
584
|
-
|
|
585
|
-
// --- Helpers ---
|
|
586
|
-
|
|
587
|
-
function getOpenCodeMcpPack(key) {
|
|
588
|
-
return OPENCODE_MCP_PACKS.find(pack => pack.key === key) || null;
|
|
589
|
-
}
|
|
590
|
-
|
|
591
|
-
function normalizeOpenCodeMcpPackKeys(keys = []) {
|
|
592
|
-
return [...new Set((Array.isArray(keys) ? keys : [])
|
|
593
|
-
.map(key => `${key}`.trim())
|
|
594
|
-
.filter(Boolean))]
|
|
595
|
-
.filter(key => !!getOpenCodeMcpPack(key));
|
|
596
|
-
}
|
|
597
|
-
|
|
598
|
-
function packToJsonc(pack) {
|
|
599
|
-
const proj = pack.jsoncProjection;
|
|
600
|
-
const entry = {};
|
|
601
|
-
if (proj.command) entry.command = proj.command;
|
|
602
|
-
if (proj.environment) entry.environment = proj.environment;
|
|
603
|
-
if (pack.enabledTools && pack.enabledTools.length > 0) {
|
|
604
|
-
entry.tools = {};
|
|
605
|
-
for (const tool of pack.enabledTools) {
|
|
606
|
-
entry.tools[tool] = true;
|
|
607
|
-
}
|
|
608
|
-
}
|
|
609
|
-
return { [pack.serverName]: entry };
|
|
610
|
-
}
|
|
611
|
-
|
|
612
|
-
function packsToJsonc(packKeys = []) {
|
|
613
|
-
const mcp = {};
|
|
614
|
-
for (const key of normalizeOpenCodeMcpPackKeys(packKeys)) {
|
|
615
|
-
const pack = getOpenCodeMcpPack(key);
|
|
616
|
-
if (!pack) continue;
|
|
617
|
-
Object.assign(mcp, packToJsonc(pack));
|
|
618
|
-
}
|
|
619
|
-
return JSON.stringify({ mcp }, null, 2);
|
|
620
|
-
}
|
|
621
|
-
|
|
622
|
-
function hasPostgresSignals(ctx, deps) {
|
|
623
|
-
const hasDep = (name) => Object.prototype.hasOwnProperty.call(deps || {}, name);
|
|
624
|
-
return hasDep('pg') || hasDep('postgres') || hasDep('prisma') || hasDep('@prisma/client');
|
|
625
|
-
}
|
|
626
|
-
|
|
627
|
-
function getProjectDependencies(ctx) {
|
|
628
|
-
if (typeof ctx.projectDependencies === 'function') return ctx.projectDependencies();
|
|
629
|
-
const pkg = ctx.jsonFile('package.json') || {};
|
|
630
|
-
return { ...(pkg.dependencies || {}), ...(pkg.devDependencies || {}) };
|
|
631
|
-
}
|
|
632
|
-
|
|
633
|
-
function recommendOpenCodeMcpPacks(stacks = [], domainPacks = [], options = {}) {
|
|
634
|
-
const ctx = options.ctx || null;
|
|
635
|
-
const stackKeys = new Set(stacks.map(s => s.key));
|
|
636
|
-
const domainKeys = new Set(domainPacks.map(p => p.key));
|
|
637
|
-
const deps = ctx ? getProjectDependencies(ctx) : {};
|
|
638
|
-
const recommended = [];
|
|
639
|
-
|
|
640
|
-
function add(key, reason) {
|
|
641
|
-
if (recommended.some(r => r.key === key)) return;
|
|
642
|
-
const pack = getOpenCodeMcpPack(key);
|
|
643
|
-
if (!pack) return;
|
|
644
|
-
recommended.push({ ...pack, matchReason: reason });
|
|
645
|
-
}
|
|
646
|
-
|
|
647
|
-
// Always recommend docs
|
|
648
|
-
add('context7-docs', 'Safe default for up-to-date docs.');
|
|
649
|
-
|
|
650
|
-
// GitHub for GitHub repos
|
|
651
|
-
if (ctx && (ctx.hasDir('.github') || ctx.fileContent('.git/config'))) {
|
|
652
|
-
add('github-mcp', 'GitHub-hosted repo detected.');
|
|
653
|
-
}
|
|
654
|
-
|
|
655
|
-
// Frontend packs
|
|
656
|
-
if (stackKeys.has('react') || stackKeys.has('nextjs') || stackKeys.has('vue') || domainKeys.has('frontend-ui')) {
|
|
657
|
-
add('playwright-mcp', 'Frontend stack detected.');
|
|
658
|
-
}
|
|
659
|
-
if (stackKeys.has('nextjs')) {
|
|
660
|
-
add('next-devtools', 'Next.js detected.');
|
|
661
|
-
}
|
|
662
|
-
|
|
663
|
-
// Backend / data packs
|
|
664
|
-
if (ctx && hasPostgresSignals(ctx, deps)) {
|
|
665
|
-
add('postgres-mcp', 'PostgreSQL signals detected.');
|
|
666
|
-
}
|
|
667
|
-
|
|
668
|
-
// Docker
|
|
669
|
-
if (stackKeys.has('docker') || (ctx && (ctx.fileContent('Dockerfile') || ctx.fileContent('docker-compose.yml')))) {
|
|
670
|
-
add('docker-mcp', 'Docker usage detected.');
|
|
671
|
-
}
|
|
672
|
-
|
|
673
|
-
// Security scanner for multi-MCP
|
|
674
|
-
if (recommended.length >= 2) {
|
|
675
|
-
add('mcp-security', 'Multiple MCP servers — security scanner recommended.');
|
|
676
|
-
}
|
|
677
|
-
|
|
678
|
-
return recommended;
|
|
679
|
-
}
|
|
680
|
-
|
|
681
|
-
function getOpenCodeMcpPreflight(packKeys = []) {
|
|
682
|
-
return normalizeOpenCodeMcpPackKeys(packKeys).map(key => {
|
|
683
|
-
const pack = getOpenCodeMcpPack(key);
|
|
684
|
-
if (!pack) return { key, safe: false, warning: `Unknown pack "${key}".` };
|
|
685
|
-
if (pack.requiredAuth.length === 0) {
|
|
686
|
-
return { key, label: pack.label, safe: true, warning: null };
|
|
687
|
-
}
|
|
688
|
-
return {
|
|
689
|
-
key,
|
|
690
|
-
label: pack.label,
|
|
691
|
-
safe: false,
|
|
692
|
-
warning: `Requires: ${pack.requiredAuth.join(', ')}. Set these as environment variables before enabling.`,
|
|
693
|
-
};
|
|
694
|
-
});
|
|
695
|
-
}
|
|
696
|
-
|
|
697
|
-
module.exports = {
|
|
698
|
-
OPENCODE_MCP_PACKS,
|
|
699
|
-
getOpenCodeMcpPack,
|
|
700
|
-
normalizeOpenCodeMcpPackKeys,
|
|
701
|
-
packToJsonc,
|
|
702
|
-
packsToJsonc,
|
|
703
|
-
recommendOpenCodeMcpPacks,
|
|
704
|
-
getOpenCodeMcpPreflight,
|
|
705
|
-
};
|
|
1
|
+
/**
|
|
2
|
+
* OpenCode MCP Pack System — 26 MCP packs
|
|
3
|
+
*
|
|
4
|
+
* MCP config in OpenCode lives in opencode.json under "mcp": { "<name>": { ... } }
|
|
5
|
+
* Uses JSONC format with command/args/environment/tools fields.
|
|
6
|
+
*/
|
|
7
|
+
|
|
8
|
+
const OPENCODE_MCP_PACKS = [
|
|
9
|
+
{
|
|
10
|
+
key: 'context7-docs',
|
|
11
|
+
label: 'Context7 Docs',
|
|
12
|
+
description: 'Live, current framework and library documentation during OpenCode sessions.',
|
|
13
|
+
useWhen: 'Repos that use any framework, library, or SDK and benefit from up-to-date docs.',
|
|
14
|
+
adoption: 'Safe default docs pack for most application repos. No auth required.',
|
|
15
|
+
trustLevel: 'high',
|
|
16
|
+
transport: 'stdio',
|
|
17
|
+
requiredAuth: [],
|
|
18
|
+
serverName: 'context7',
|
|
19
|
+
jsoncProjection: { command: ['npx', '-y', '@upstash/context7-mcp@latest'] },
|
|
20
|
+
enabledTools: ['resolve-library-id', 'get-library-docs'],
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
key: 'github-mcp',
|
|
24
|
+
label: 'GitHub',
|
|
25
|
+
description: 'Issue, PR, and repository context during OpenCode sessions.',
|
|
26
|
+
useWhen: 'Repos hosted on GitHub that benefit from issue, PR, and repo context.',
|
|
27
|
+
adoption: 'Recommended for any GitHub-hosted project. Requires GITHUB_PERSONAL_ACCESS_TOKEN.',
|
|
28
|
+
trustLevel: 'medium',
|
|
29
|
+
transport: 'stdio',
|
|
30
|
+
requiredAuth: ['GITHUB_PERSONAL_ACCESS_TOKEN'],
|
|
31
|
+
serverName: 'github',
|
|
32
|
+
jsoncProjection: {
|
|
33
|
+
command: ['npx', '-y', '@modelcontextprotocol/server-github'],
|
|
34
|
+
environment: { GITHUB_PERSONAL_ACCESS_TOKEN: '${GITHUB_PERSONAL_ACCESS_TOKEN}' },
|
|
35
|
+
},
|
|
36
|
+
enabledTools: ['list_issues', 'get_issue', 'search_issues', 'list_pull_requests', 'get_pull_request', 'get_file_contents', 'search_code'],
|
|
37
|
+
},
|
|
38
|
+
{
|
|
39
|
+
key: 'playwright-mcp',
|
|
40
|
+
label: 'Playwright Browser',
|
|
41
|
+
description: 'Browser automation, E2E testing, and visual QA.',
|
|
42
|
+
useWhen: 'Frontend repos with E2E tests or browser-based workflows.',
|
|
43
|
+
adoption: 'Recommended for frontend-ui repos with E2E tests. No auth required.',
|
|
44
|
+
trustLevel: 'medium',
|
|
45
|
+
transport: 'stdio',
|
|
46
|
+
requiredAuth: [],
|
|
47
|
+
serverName: 'playwright',
|
|
48
|
+
jsoncProjection: { command: ['npx', '-y', '@playwright/mcp@latest'] },
|
|
49
|
+
enabledTools: ['browser_navigate', 'browser_screenshot', 'browser_click', 'browser_type', 'browser_wait_for_selector'],
|
|
50
|
+
},
|
|
51
|
+
{
|
|
52
|
+
key: 'postgres-mcp',
|
|
53
|
+
label: 'PostgreSQL',
|
|
54
|
+
description: 'Schema inspection and query assistance for PostgreSQL databases.',
|
|
55
|
+
useWhen: 'Repos with PostgreSQL databases that benefit from schema and query context.',
|
|
56
|
+
adoption: 'Useful for backend-api and data-pipeline repos. Requires DATABASE_URL.',
|
|
57
|
+
trustLevel: 'low',
|
|
58
|
+
transport: 'stdio',
|
|
59
|
+
requiredAuth: ['DATABASE_URL'],
|
|
60
|
+
serverName: 'postgres',
|
|
61
|
+
jsoncProjection: {
|
|
62
|
+
command: ['npx', '-y', '@modelcontextprotocol/server-postgres', '${DATABASE_URL}'],
|
|
63
|
+
},
|
|
64
|
+
enabledTools: ['query', 'list_tables', 'describe_table'],
|
|
65
|
+
},
|
|
66
|
+
{
|
|
67
|
+
key: 'memory-mcp',
|
|
68
|
+
label: 'Memory / Knowledge Graph',
|
|
69
|
+
description: 'Persistent entity and relationship tracking across OpenCode sessions.',
|
|
70
|
+
useWhen: 'Long-running or complex projects with many interconnected concepts.',
|
|
71
|
+
adoption: 'Safe for any repo. Stores data locally. No auth required.',
|
|
72
|
+
trustLevel: 'high',
|
|
73
|
+
transport: 'stdio',
|
|
74
|
+
requiredAuth: [],
|
|
75
|
+
serverName: 'memory',
|
|
76
|
+
jsoncProjection: { command: ['npx', '-y', '@modelcontextprotocol/server-memory'] },
|
|
77
|
+
enabledTools: ['create_entities', 'create_relations', 'search_nodes', 'open_nodes', 'read_graph'],
|
|
78
|
+
},
|
|
79
|
+
{
|
|
80
|
+
key: 'sequential-thinking',
|
|
81
|
+
label: 'Sequential Thinking',
|
|
82
|
+
description: 'Structured step-by-step reasoning for complex problem-solving.',
|
|
83
|
+
useWhen: 'Complex problem-solving sessions that benefit from structured reasoning.',
|
|
84
|
+
adoption: 'Safe default for any repo. No auth required.',
|
|
85
|
+
trustLevel: 'high',
|
|
86
|
+
transport: 'stdio',
|
|
87
|
+
requiredAuth: [],
|
|
88
|
+
serverName: 'sequential-thinking',
|
|
89
|
+
jsoncProjection: { command: ['npx', '-y', '@modelcontextprotocol/server-sequential-thinking'] },
|
|
90
|
+
enabledTools: ['sequentialthinking'],
|
|
91
|
+
},
|
|
92
|
+
{
|
|
93
|
+
key: 'filesystem-mcp',
|
|
94
|
+
label: 'Filesystem',
|
|
95
|
+
description: 'Read-only filesystem access for documentation and reference files.',
|
|
96
|
+
useWhen: 'Repos with reference files, docs, or config that OpenCode needs to read.',
|
|
97
|
+
adoption: 'Read-only default. Pass allowed directories as args.',
|
|
98
|
+
trustLevel: 'medium',
|
|
99
|
+
transport: 'stdio',
|
|
100
|
+
requiredAuth: [],
|
|
101
|
+
serverName: 'filesystem',
|
|
102
|
+
jsoncProjection: { command: ['npx', '-y', '@modelcontextprotocol/server-filesystem', '.'] },
|
|
103
|
+
enabledTools: ['read_file', 'list_directory', 'search_files', 'get_file_info'],
|
|
104
|
+
},
|
|
105
|
+
{
|
|
106
|
+
key: 'fetch-mcp',
|
|
107
|
+
label: 'Fetch / HTTP',
|
|
108
|
+
description: 'HTTP access for fetching web pages, APIs, and documentation.',
|
|
109
|
+
useWhen: 'Repos that need HTTP access to external APIs or documentation sources.',
|
|
110
|
+
adoption: 'Useful for repos integrating external services. No auth required.',
|
|
111
|
+
trustLevel: 'medium',
|
|
112
|
+
transport: 'stdio',
|
|
113
|
+
requiredAuth: [],
|
|
114
|
+
serverName: 'fetch',
|
|
115
|
+
jsoncProjection: { command: ['npx', '-y', '@modelcontextprotocol/server-fetch'] },
|
|
116
|
+
enabledTools: ['fetch'],
|
|
117
|
+
},
|
|
118
|
+
{
|
|
119
|
+
key: 'next-devtools',
|
|
120
|
+
label: 'Next.js Devtools',
|
|
121
|
+
description: 'Runtime-aware debugging and framework-specific tooling for Next.js.',
|
|
122
|
+
useWhen: 'Next.js repos that need runtime-aware debugging.',
|
|
123
|
+
adoption: 'Useful companion for frontend-ui repos running Next.js.',
|
|
124
|
+
trustLevel: 'medium',
|
|
125
|
+
transport: 'stdio',
|
|
126
|
+
requiredAuth: [],
|
|
127
|
+
serverName: 'next-devtools',
|
|
128
|
+
jsoncProjection: { command: ['npx', '-y', 'next-devtools-mcp@latest'] },
|
|
129
|
+
enabledTools: ['get_page_info', 'get_routes', 'get_components'],
|
|
130
|
+
},
|
|
131
|
+
{
|
|
132
|
+
key: 'docker-mcp',
|
|
133
|
+
label: 'Docker',
|
|
134
|
+
description: 'Container management during OpenCode sessions.',
|
|
135
|
+
useWhen: 'Repos with containerized workflows.',
|
|
136
|
+
adoption: 'Requires Docker running locally.',
|
|
137
|
+
trustLevel: 'medium',
|
|
138
|
+
transport: 'stdio',
|
|
139
|
+
requiredAuth: [],
|
|
140
|
+
serverName: 'docker',
|
|
141
|
+
jsoncProjection: { command: ['npx', '-y', '@hypnosis/docker-mcp-server'] },
|
|
142
|
+
enabledTools: ['list_containers', 'container_logs', 'container_inspect'],
|
|
143
|
+
},
|
|
144
|
+
{
|
|
145
|
+
key: 'notion-mcp',
|
|
146
|
+
label: 'Notion',
|
|
147
|
+
description: 'Access Notion documentation and wikis.',
|
|
148
|
+
useWhen: 'Teams using Notion for docs or knowledge bases.',
|
|
149
|
+
adoption: 'Requires NOTION_API_KEY.',
|
|
150
|
+
trustLevel: 'medium',
|
|
151
|
+
transport: 'stdio',
|
|
152
|
+
requiredAuth: ['NOTION_API_KEY'],
|
|
153
|
+
serverName: 'notion',
|
|
154
|
+
jsoncProjection: { command: ['npx', '-y', '@notionhq/notion-mcp-server'], environment: { NOTION_API_KEY: '${NOTION_API_KEY}' } },
|
|
155
|
+
enabledTools: ['search', 'get_page', 'get_database'],
|
|
156
|
+
},
|
|
157
|
+
{
|
|
158
|
+
key: 'linear-mcp',
|
|
159
|
+
label: 'Linear',
|
|
160
|
+
description: 'Issue tracking and sprint context.',
|
|
161
|
+
useWhen: 'Teams using Linear for issue tracking.',
|
|
162
|
+
adoption: 'Requires LINEAR_API_KEY.',
|
|
163
|
+
trustLevel: 'medium',
|
|
164
|
+
transport: 'stdio',
|
|
165
|
+
requiredAuth: ['LINEAR_API_KEY'],
|
|
166
|
+
serverName: 'linear',
|
|
167
|
+
jsoncProjection: { command: ['npx', '-y', '@mseep/linear-mcp'], environment: { LINEAR_API_KEY: '${LINEAR_API_KEY}' } },
|
|
168
|
+
enabledTools: ['list_issues', 'get_issue', 'search_issues'],
|
|
169
|
+
},
|
|
170
|
+
{
|
|
171
|
+
key: 'sentry-mcp',
|
|
172
|
+
label: 'Sentry',
|
|
173
|
+
description: 'Error tracking and debugging context.',
|
|
174
|
+
useWhen: 'Repos with Sentry error tracking.',
|
|
175
|
+
adoption: 'Requires SENTRY_AUTH_TOKEN.',
|
|
176
|
+
trustLevel: 'medium',
|
|
177
|
+
transport: 'stdio',
|
|
178
|
+
requiredAuth: ['SENTRY_AUTH_TOKEN'],
|
|
179
|
+
serverName: 'sentry',
|
|
180
|
+
jsoncProjection: { command: ['npx', '-y', '@sentry/mcp-server'], environment: { SENTRY_AUTH_TOKEN: '${SENTRY_AUTH_TOKEN}' } },
|
|
181
|
+
enabledTools: ['get_issues', 'get_issue_details', 'search_errors'],
|
|
182
|
+
},
|
|
183
|
+
{
|
|
184
|
+
key: 'slack-mcp',
|
|
185
|
+
label: 'Slack',
|
|
186
|
+
description: 'Draft and preview Slack messages.',
|
|
187
|
+
useWhen: 'Teams using Slack for communication.',
|
|
188
|
+
adoption: 'Requires SLACK_BOT_TOKEN.',
|
|
189
|
+
trustLevel: 'low',
|
|
190
|
+
transport: 'stdio',
|
|
191
|
+
requiredAuth: ['SLACK_BOT_TOKEN'],
|
|
192
|
+
serverName: 'slack',
|
|
193
|
+
jsoncProjection: { command: ['npx', '-y', 'slack-mcp-server'], environment: { SLACK_BOT_TOKEN: '${SLACK_BOT_TOKEN}' } },
|
|
194
|
+
enabledTools: ['list_channels', 'post_message', 'search_messages'],
|
|
195
|
+
},
|
|
196
|
+
{
|
|
197
|
+
key: 'stripe-mcp',
|
|
198
|
+
label: 'Stripe',
|
|
199
|
+
description: 'Payment and billing workflow context.',
|
|
200
|
+
useWhen: 'Repos with Stripe integration.',
|
|
201
|
+
adoption: 'Requires STRIPE_API_KEY.',
|
|
202
|
+
trustLevel: 'low',
|
|
203
|
+
transport: 'stdio',
|
|
204
|
+
requiredAuth: ['STRIPE_API_KEY'],
|
|
205
|
+
serverName: 'stripe',
|
|
206
|
+
jsoncProjection: { command: ['npx', '-y', '@stripe/mcp'], environment: { STRIPE_API_KEY: '${STRIPE_API_KEY}' } },
|
|
207
|
+
enabledTools: ['list_products', 'get_subscription', 'search_customers'],
|
|
208
|
+
},
|
|
209
|
+
{
|
|
210
|
+
key: 'figma-mcp',
|
|
211
|
+
label: 'Figma',
|
|
212
|
+
description: 'Design file access and component inspection.',
|
|
213
|
+
useWhen: 'Design-heavy repos needing Figma access.',
|
|
214
|
+
adoption: 'Requires FIGMA_ACCESS_TOKEN.',
|
|
215
|
+
trustLevel: 'medium',
|
|
216
|
+
transport: 'stdio',
|
|
217
|
+
requiredAuth: ['FIGMA_ACCESS_TOKEN'],
|
|
218
|
+
serverName: 'figma',
|
|
219
|
+
jsoncProjection: { command: ['npx', '-y', 'claude-talk-to-figma-mcp'], environment: { FIGMA_ACCESS_TOKEN: '${FIGMA_ACCESS_TOKEN}' } },
|
|
220
|
+
enabledTools: ['get_file', 'get_components', 'get_styles'],
|
|
221
|
+
},
|
|
222
|
+
{
|
|
223
|
+
key: 'mcp-security',
|
|
224
|
+
label: 'MCP Security Scanner',
|
|
225
|
+
description: 'Scan MCP servers for tool poisoning and prompt injection.',
|
|
226
|
+
useWhen: 'Any repo with 2+ MCP servers.',
|
|
227
|
+
adoption: 'Safety companion for multi-MCP setups.',
|
|
228
|
+
trustLevel: 'high',
|
|
229
|
+
transport: 'stdio',
|
|
230
|
+
requiredAuth: [],
|
|
231
|
+
serverName: 'mcp-scan',
|
|
232
|
+
jsoncProjection: { command: ['npx', '-y', 'mcp-scan@latest'] },
|
|
233
|
+
enabledTools: ['scan_servers', 'check_tools'],
|
|
234
|
+
},
|
|
235
|
+
{
|
|
236
|
+
key: 'composio-mcp',
|
|
237
|
+
label: 'Composio Universal',
|
|
238
|
+
description: '500+ integrations through a single MCP gateway.',
|
|
239
|
+
useWhen: 'Enterprise or integration-heavy repos.',
|
|
240
|
+
adoption: 'Requires COMPOSIO_API_KEY.',
|
|
241
|
+
trustLevel: 'medium',
|
|
242
|
+
transport: 'stdio',
|
|
243
|
+
requiredAuth: ['COMPOSIO_API_KEY'],
|
|
244
|
+
serverName: 'composio',
|
|
245
|
+
jsoncProjection: { command: ['npx', '-y', '@composio/mcp'], environment: { COMPOSIO_API_KEY: '${COMPOSIO_API_KEY}' } },
|
|
246
|
+
enabledTools: [],
|
|
247
|
+
},
|
|
248
|
+
{
|
|
249
|
+
key: 'jira-confluence',
|
|
250
|
+
label: 'Jira',
|
|
251
|
+
description: 'Issue tracking and project management.',
|
|
252
|
+
useWhen: 'Teams using Atlassian Jira.',
|
|
253
|
+
adoption: 'Requires ATLASSIAN_API_TOKEN and ATLASSIAN_EMAIL.',
|
|
254
|
+
trustLevel: 'medium',
|
|
255
|
+
transport: 'stdio',
|
|
256
|
+
requiredAuth: ['ATLASSIAN_API_TOKEN', 'ATLASSIAN_EMAIL'],
|
|
257
|
+
serverName: 'jira',
|
|
258
|
+
jsoncProjection: { command: ['npx', '-y', 'jira-mcp'], environment: { ATLASSIAN_API_TOKEN: '${ATLASSIAN_API_TOKEN}', ATLASSIAN_EMAIL: '${ATLASSIAN_EMAIL}' } },
|
|
259
|
+
enabledTools: ['list_issues', 'get_issue', 'search_issues'],
|
|
260
|
+
},
|
|
261
|
+
{
|
|
262
|
+
key: 'ga4-analytics',
|
|
263
|
+
label: 'Google Analytics 4',
|
|
264
|
+
description: 'Live GA4 data, attribution, and audience insights.',
|
|
265
|
+
useWhen: 'Repos with web analytics needs.',
|
|
266
|
+
adoption: 'Requires GA4_PROPERTY_ID and GOOGLE_APPLICATION_CREDENTIALS.',
|
|
267
|
+
trustLevel: 'medium',
|
|
268
|
+
transport: 'stdio',
|
|
269
|
+
requiredAuth: ['GA4_PROPERTY_ID', 'GOOGLE_APPLICATION_CREDENTIALS'],
|
|
270
|
+
serverName: 'ga4',
|
|
271
|
+
jsoncProjection: { command: ['npx', '-y', 'mcp-server-ga4'], environment: { GA4_PROPERTY_ID: '${GA4_PROPERTY_ID}', GOOGLE_APPLICATION_CREDENTIALS: '${GOOGLE_APPLICATION_CREDENTIALS}' } },
|
|
272
|
+
enabledTools: ['run_report', 'get_metadata'],
|
|
273
|
+
},
|
|
274
|
+
{
|
|
275
|
+
key: 'search-console',
|
|
276
|
+
label: 'Google Search Console',
|
|
277
|
+
description: 'Search performance and indexing data.',
|
|
278
|
+
useWhen: 'SEO-focused repos.',
|
|
279
|
+
adoption: 'Requires Google OAuth credentials.',
|
|
280
|
+
trustLevel: 'medium',
|
|
281
|
+
transport: 'stdio',
|
|
282
|
+
requiredAuth: ['GOOGLE_CLIENT_ID', 'GOOGLE_CLIENT_SECRET'],
|
|
283
|
+
serverName: 'gsc',
|
|
284
|
+
jsoncProjection: { command: ['npx', '-y', 'mcp-gsc@latest'], environment: { GOOGLE_CLIENT_ID: '${GOOGLE_CLIENT_ID}', GOOGLE_CLIENT_SECRET: '${GOOGLE_CLIENT_SECRET}' } },
|
|
285
|
+
enabledTools: ['search_analytics', 'get_sitemaps'],
|
|
286
|
+
},
|
|
287
|
+
{
|
|
288
|
+
key: 'n8n-workflows',
|
|
289
|
+
label: 'n8n Workflow Automation',
|
|
290
|
+
description: 'Workflow automation with 1,396 integration nodes.',
|
|
291
|
+
useWhen: 'Teams using n8n for workflow automation.',
|
|
292
|
+
adoption: 'Requires N8N_URL and N8N_API_KEY.',
|
|
293
|
+
trustLevel: 'medium',
|
|
294
|
+
transport: 'stdio',
|
|
295
|
+
requiredAuth: ['N8N_URL', 'N8N_API_KEY'],
|
|
296
|
+
serverName: 'n8n',
|
|
297
|
+
jsoncProjection: { command: ['npx', '-y', 'n8n-mcp-server@latest'], environment: { N8N_URL: '${N8N_URL}', N8N_API_KEY: '${N8N_API_KEY}' } },
|
|
298
|
+
enabledTools: ['list_workflows', 'execute_workflow'],
|
|
299
|
+
},
|
|
300
|
+
{
|
|
301
|
+
key: 'zendesk-mcp',
|
|
302
|
+
label: 'Zendesk',
|
|
303
|
+
description: 'Ticket management and help center content.',
|
|
304
|
+
useWhen: 'Support teams using Zendesk.',
|
|
305
|
+
adoption: 'Requires ZENDESK_API_TOKEN and ZENDESK_SUBDOMAIN.',
|
|
306
|
+
trustLevel: 'medium',
|
|
307
|
+
transport: 'stdio',
|
|
308
|
+
requiredAuth: ['ZENDESK_API_TOKEN', 'ZENDESK_SUBDOMAIN'],
|
|
309
|
+
serverName: 'zendesk',
|
|
310
|
+
jsoncProjection: { command: ['npx', '-y', 'zendesk-mcp'], environment: { ZENDESK_API_TOKEN: '${ZENDESK_API_TOKEN}', ZENDESK_SUBDOMAIN: '${ZENDESK_SUBDOMAIN}' } },
|
|
311
|
+
enabledTools: ['list_tickets', 'get_ticket', 'search_tickets'],
|
|
312
|
+
},
|
|
313
|
+
{
|
|
314
|
+
key: 'infisical-secrets',
|
|
315
|
+
label: 'Infisical Secrets',
|
|
316
|
+
description: 'Secrets management with auto-rotation.',
|
|
317
|
+
useWhen: 'Repos using Infisical for secrets.',
|
|
318
|
+
adoption: 'Requires INFISICAL_TOKEN.',
|
|
319
|
+
trustLevel: 'low',
|
|
320
|
+
transport: 'stdio',
|
|
321
|
+
requiredAuth: ['INFISICAL_TOKEN'],
|
|
322
|
+
serverName: 'infisical',
|
|
323
|
+
jsoncProjection: { command: ['npx', '-y', '@infisical/mcp'], environment: { INFISICAL_TOKEN: '${INFISICAL_TOKEN}' } },
|
|
324
|
+
enabledTools: ['get_secret', 'list_secrets'],
|
|
325
|
+
},
|
|
326
|
+
{
|
|
327
|
+
key: 'shopify-mcp',
|
|
328
|
+
label: 'Shopify',
|
|
329
|
+
description: 'Shopify API and deployment tooling.',
|
|
330
|
+
useWhen: 'Shopify stores and apps.',
|
|
331
|
+
adoption: 'Requires SHOPIFY_ACCESS_TOKEN.',
|
|
332
|
+
trustLevel: 'medium',
|
|
333
|
+
transport: 'stdio',
|
|
334
|
+
requiredAuth: ['SHOPIFY_ACCESS_TOKEN'],
|
|
335
|
+
serverName: 'shopify',
|
|
336
|
+
jsoncProjection: { command: ['npx', '-y', 'shopify-mcp'], environment: { SHOPIFY_ACCESS_TOKEN: '${SHOPIFY_ACCESS_TOKEN}' } },
|
|
337
|
+
enabledTools: ['get_products', 'get_orders'],
|
|
338
|
+
},
|
|
339
|
+
{
|
|
340
|
+
key: 'huggingface-mcp',
|
|
341
|
+
label: 'Hugging Face',
|
|
342
|
+
description: 'Model search, dataset discovery, and Spaces.',
|
|
343
|
+
useWhen: 'AI/ML repos needing model registry access.',
|
|
344
|
+
adoption: 'Requires HF_TOKEN.',
|
|
345
|
+
trustLevel: 'medium',
|
|
346
|
+
transport: 'stdio',
|
|
347
|
+
requiredAuth: ['HF_TOKEN'],
|
|
348
|
+
serverName: 'huggingface',
|
|
349
|
+
jsoncProjection: { command: ['npx', '-y', 'huggingface-mcp-server'], environment: { HF_TOKEN: '${HF_TOKEN}' } },
|
|
350
|
+
enabledTools: ['search_models', 'get_model_info', 'search_datasets'],
|
|
351
|
+
},
|
|
352
|
+
// ── 23 new packs ─────────────────────────────────────────────────────────
|
|
353
|
+
{
|
|
354
|
+
key: 'supabase-mcp', label: 'Supabase',
|
|
355
|
+
description: 'Database, auth, and storage for Supabase.',
|
|
356
|
+
useWhen: 'Repos using Supabase.',
|
|
357
|
+
adoption: 'Requires: SUPABASE_URL, SUPABASE_SERVICE_ROLE_KEY.',
|
|
358
|
+
trustLevel: 'medium', transport: 'stdio', requiredAuth: ['SUPABASE_URL', 'SUPABASE_SERVICE_ROLE_KEY'],
|
|
359
|
+
serverName: 'supabase',
|
|
360
|
+
jsoncProjection: { command: ['npx', '-y', '@supabase/mcp-server-supabase@latest'], environment: { SUPABASE_URL: '${SUPABASE_URL}', SUPABASE_SERVICE_ROLE_KEY: '${SUPABASE_SERVICE_ROLE_KEY}' } },
|
|
361
|
+
enabledTools: ['list_tables', 'query', 'insert', 'update'],
|
|
362
|
+
},
|
|
363
|
+
{
|
|
364
|
+
key: 'prisma-mcp', label: 'Prisma ORM',
|
|
365
|
+
description: 'Schema inspection and migrations via Prisma.',
|
|
366
|
+
useWhen: 'Repos with a Prisma schema.',
|
|
367
|
+
adoption: 'Requires: DATABASE_URL.',
|
|
368
|
+
trustLevel: 'medium', transport: 'stdio', requiredAuth: ['DATABASE_URL'],
|
|
369
|
+
serverName: 'prisma',
|
|
370
|
+
jsoncProjection: { command: ['npx', '-y', 'prisma-mcp-server@latest'], environment: { DATABASE_URL: '${DATABASE_URL}' } },
|
|
371
|
+
enabledTools: ['introspect_schema', 'list_models', 'query_raw'],
|
|
372
|
+
},
|
|
373
|
+
{
|
|
374
|
+
key: 'vercel-mcp', label: 'Vercel',
|
|
375
|
+
description: 'Deployment management via Vercel.',
|
|
376
|
+
useWhen: 'Repos deployed on Vercel.',
|
|
377
|
+
adoption: 'Requires: VERCEL_TOKEN.',
|
|
378
|
+
trustLevel: 'medium', transport: 'stdio', requiredAuth: ['VERCEL_TOKEN'],
|
|
379
|
+
serverName: 'vercel',
|
|
380
|
+
jsoncProjection: { command: ['npx', '-y', '@vercel/mcp-server@latest'], environment: { VERCEL_TOKEN: '${VERCEL_TOKEN}' } },
|
|
381
|
+
enabledTools: ['list_projects', 'get_deployment', 'list_deployments'],
|
|
382
|
+
},
|
|
383
|
+
{
|
|
384
|
+
key: 'cloudflare-mcp', label: 'Cloudflare',
|
|
385
|
+
description: 'Workers, KV, R2, and D1 management.',
|
|
386
|
+
useWhen: 'Repos using Cloudflare edge.',
|
|
387
|
+
adoption: 'Requires: CLOUDFLARE_API_TOKEN.',
|
|
388
|
+
trustLevel: 'medium', transport: 'stdio', requiredAuth: ['CLOUDFLARE_API_TOKEN'],
|
|
389
|
+
serverName: 'cloudflare',
|
|
390
|
+
jsoncProjection: { command: ['npx', '-y', '@cloudflare/mcp-server-cloudflare@latest'], environment: { CLOUDFLARE_API_TOKEN: '${CLOUDFLARE_API_TOKEN}' } },
|
|
391
|
+
enabledTools: ['list_workers', 'get_kv', 'list_r2_buckets'],
|
|
392
|
+
},
|
|
393
|
+
{
|
|
394
|
+
key: 'aws-mcp', label: 'AWS',
|
|
395
|
+
description: 'S3, Lambda, DynamoDB access.',
|
|
396
|
+
useWhen: 'Repos using AWS.',
|
|
397
|
+
adoption: 'Requires: AWS_ACCESS_KEY_ID, AWS_SECRET_ACCESS_KEY, AWS_REGION.',
|
|
398
|
+
trustLevel: 'low', transport: 'stdio', requiredAuth: ['AWS_ACCESS_KEY_ID', 'AWS_SECRET_ACCESS_KEY', 'AWS_REGION'],
|
|
399
|
+
serverName: 'aws',
|
|
400
|
+
jsoncProjection: { command: ['npx', '-y', '@aws-samples/mcp-server-aws@latest'], environment: { AWS_ACCESS_KEY_ID: '${AWS_ACCESS_KEY_ID}', AWS_SECRET_ACCESS_KEY: '${AWS_SECRET_ACCESS_KEY}', AWS_REGION: '${AWS_REGION}' } },
|
|
401
|
+
enabledTools: ['list_buckets', 'list_functions', 'list_tables'],
|
|
402
|
+
},
|
|
403
|
+
{
|
|
404
|
+
key: 'redis-mcp', label: 'Redis',
|
|
405
|
+
description: 'Cache and session management.',
|
|
406
|
+
useWhen: 'Repos using Redis.',
|
|
407
|
+
adoption: 'Requires: REDIS_URL.',
|
|
408
|
+
trustLevel: 'medium', transport: 'stdio', requiredAuth: ['REDIS_URL'],
|
|
409
|
+
serverName: 'redis',
|
|
410
|
+
jsoncProjection: { command: ['npx', '-y', 'redis-mcp-server@latest'], environment: { REDIS_URL: '${REDIS_URL}' } },
|
|
411
|
+
enabledTools: ['get', 'set', 'del', 'hget', 'hset'],
|
|
412
|
+
},
|
|
413
|
+
{
|
|
414
|
+
key: 'mongodb-mcp', label: 'MongoDB',
|
|
415
|
+
description: 'Document database access.',
|
|
416
|
+
useWhen: 'Repos using MongoDB.',
|
|
417
|
+
adoption: 'Requires: MONGODB_URI.',
|
|
418
|
+
trustLevel: 'medium', transport: 'stdio', requiredAuth: ['MONGODB_URI'],
|
|
419
|
+
serverName: 'mongodb',
|
|
420
|
+
jsoncProjection: { command: ['npx', '-y', '@mongodb-js/mongodb-mcp-server@latest'], environment: { MONGODB_URI: '${MONGODB_URI}' } },
|
|
421
|
+
enabledTools: ['find', 'insertOne', 'updateOne', 'deleteOne'],
|
|
422
|
+
},
|
|
423
|
+
{
|
|
424
|
+
key: 'twilio-mcp', label: 'Twilio',
|
|
425
|
+
description: 'SMS, voice, and messaging.',
|
|
426
|
+
useWhen: 'Repos using Twilio.',
|
|
427
|
+
adoption: 'Requires: TWILIO_ACCOUNT_SID, TWILIO_AUTH_TOKEN.',
|
|
428
|
+
trustLevel: 'low', transport: 'stdio', requiredAuth: ['TWILIO_ACCOUNT_SID', 'TWILIO_AUTH_TOKEN'],
|
|
429
|
+
serverName: 'twilio',
|
|
430
|
+
jsoncProjection: { command: ['npx', '-y', 'twilio-mcp-server@latest'], environment: { TWILIO_ACCOUNT_SID: '${TWILIO_ACCOUNT_SID}', TWILIO_AUTH_TOKEN: '${TWILIO_AUTH_TOKEN}' } },
|
|
431
|
+
enabledTools: ['send_sms', 'list_messages', 'list_calls'],
|
|
432
|
+
},
|
|
433
|
+
{
|
|
434
|
+
key: 'sendgrid-mcp', label: 'SendGrid',
|
|
435
|
+
description: 'Transactional email delivery.',
|
|
436
|
+
useWhen: 'Repos using SendGrid.',
|
|
437
|
+
adoption: 'Requires: SENDGRID_API_KEY.',
|
|
438
|
+
trustLevel: 'medium', transport: 'stdio', requiredAuth: ['SENDGRID_API_KEY'],
|
|
439
|
+
serverName: 'sendgrid',
|
|
440
|
+
jsoncProjection: { command: ['npx', '-y', 'sendgrid-mcp-server@latest'], environment: { SENDGRID_API_KEY: '${SENDGRID_API_KEY}' } },
|
|
441
|
+
enabledTools: ['send_email', 'list_templates', 'get_stats'],
|
|
442
|
+
},
|
|
443
|
+
{
|
|
444
|
+
key: 'algolia-mcp', label: 'Algolia Search',
|
|
445
|
+
description: 'Search indexing via Algolia.',
|
|
446
|
+
useWhen: 'Repos using Algolia.',
|
|
447
|
+
adoption: 'Requires: ALGOLIA_APP_ID, ALGOLIA_API_KEY.',
|
|
448
|
+
trustLevel: 'medium', transport: 'stdio', requiredAuth: ['ALGOLIA_APP_ID', 'ALGOLIA_API_KEY'],
|
|
449
|
+
serverName: 'algolia',
|
|
450
|
+
jsoncProjection: { command: ['npx', '-y', 'algolia-mcp-server@latest'], environment: { ALGOLIA_APP_ID: '${ALGOLIA_APP_ID}', ALGOLIA_API_KEY: '${ALGOLIA_API_KEY}' } },
|
|
451
|
+
enabledTools: ['search', 'list_indices', 'get_index'],
|
|
452
|
+
},
|
|
453
|
+
{
|
|
454
|
+
key: 'planetscale-mcp', label: 'PlanetScale',
|
|
455
|
+
description: 'Serverless MySQL via PlanetScale.',
|
|
456
|
+
useWhen: 'Repos on PlanetScale.',
|
|
457
|
+
adoption: 'Requires: PLANETSCALE_TOKEN.',
|
|
458
|
+
trustLevel: 'medium', transport: 'stdio', requiredAuth: ['PLANETSCALE_TOKEN'],
|
|
459
|
+
serverName: 'planetscale',
|
|
460
|
+
jsoncProjection: { command: ['npx', '-y', 'planetscale-mcp-server@latest'], environment: { PLANETSCALE_TOKEN: '${PLANETSCALE_TOKEN}' } },
|
|
461
|
+
enabledTools: ['list_databases', 'list_branches', 'execute_query'],
|
|
462
|
+
},
|
|
463
|
+
{
|
|
464
|
+
key: 'neon-mcp', label: 'Neon Serverless Postgres',
|
|
465
|
+
description: 'Serverless Postgres via Neon.',
|
|
466
|
+
useWhen: 'Repos using Neon.',
|
|
467
|
+
adoption: 'Requires: NEON_API_KEY.',
|
|
468
|
+
trustLevel: 'medium', transport: 'stdio', requiredAuth: ['NEON_API_KEY'],
|
|
469
|
+
serverName: 'neon',
|
|
470
|
+
jsoncProjection: { command: ['npx', '-y', '@neondatabase/mcp-server-neon@latest'], environment: { NEON_API_KEY: '${NEON_API_KEY}' } },
|
|
471
|
+
enabledTools: ['list_projects', 'list_branches', 'execute_sql'],
|
|
472
|
+
},
|
|
473
|
+
{
|
|
474
|
+
key: 'turso-mcp', label: 'Turso Edge SQLite',
|
|
475
|
+
description: 'Edge SQLite via Turso.',
|
|
476
|
+
useWhen: 'Repos using Turso.',
|
|
477
|
+
adoption: 'Requires: TURSO_DATABASE_URL, TURSO_AUTH_TOKEN.',
|
|
478
|
+
trustLevel: 'medium', transport: 'stdio', requiredAuth: ['TURSO_DATABASE_URL', 'TURSO_AUTH_TOKEN'],
|
|
479
|
+
serverName: 'turso',
|
|
480
|
+
jsoncProjection: { command: ['npx', '-y', 'turso-mcp-server@latest'], environment: { TURSO_DATABASE_URL: '${TURSO_DATABASE_URL}', TURSO_AUTH_TOKEN: '${TURSO_AUTH_TOKEN}' } },
|
|
481
|
+
enabledTools: ['execute_query', 'list_tables'],
|
|
482
|
+
},
|
|
483
|
+
{
|
|
484
|
+
key: 'upstash-mcp', label: 'Upstash Redis+Kafka',
|
|
485
|
+
description: 'Serverless Redis and Kafka.',
|
|
486
|
+
useWhen: 'Repos using Upstash.',
|
|
487
|
+
adoption: 'Requires: UPSTASH_REDIS_REST_URL, UPSTASH_REDIS_REST_TOKEN.',
|
|
488
|
+
trustLevel: 'medium', transport: 'stdio', requiredAuth: ['UPSTASH_REDIS_REST_URL', 'UPSTASH_REDIS_REST_TOKEN'],
|
|
489
|
+
serverName: 'upstash',
|
|
490
|
+
jsoncProjection: { command: ['npx', '-y', '@upstash/mcp-server@latest'], environment: { UPSTASH_REDIS_REST_URL: '${UPSTASH_REDIS_REST_URL}', UPSTASH_REDIS_REST_TOKEN: '${UPSTASH_REDIS_REST_TOKEN}' } },
|
|
491
|
+
enabledTools: ['redis_get', 'redis_set', 'redis_del'],
|
|
492
|
+
},
|
|
493
|
+
{
|
|
494
|
+
key: 'convex-mcp', label: 'Convex',
|
|
495
|
+
description: 'Reactive backend via Convex.',
|
|
496
|
+
useWhen: 'Repos using Convex.',
|
|
497
|
+
adoption: 'Requires: CONVEX_DEPLOYMENT.',
|
|
498
|
+
trustLevel: 'medium', transport: 'stdio', requiredAuth: ['CONVEX_DEPLOYMENT'],
|
|
499
|
+
serverName: 'convex',
|
|
500
|
+
jsoncProjection: { command: ['npx', '-y', '@convex-dev/mcp-server@latest'], environment: { CONVEX_DEPLOYMENT: '${CONVEX_DEPLOYMENT}' } },
|
|
501
|
+
enabledTools: ['run_query', 'run_mutation', 'list_functions'],
|
|
502
|
+
},
|
|
503
|
+
{
|
|
504
|
+
key: 'clerk-mcp', label: 'Clerk Authentication',
|
|
505
|
+
description: 'User auth via Clerk.',
|
|
506
|
+
useWhen: 'Repos using Clerk.',
|
|
507
|
+
adoption: 'Requires: CLERK_SECRET_KEY.',
|
|
508
|
+
trustLevel: 'medium', transport: 'stdio', requiredAuth: ['CLERK_SECRET_KEY'],
|
|
509
|
+
serverName: 'clerk',
|
|
510
|
+
jsoncProjection: { command: ['npx', '-y', '@clerk/mcp-server@latest'], environment: { CLERK_SECRET_KEY: '${CLERK_SECRET_KEY}' } },
|
|
511
|
+
enabledTools: ['list_users', 'get_user', 'create_user'],
|
|
512
|
+
},
|
|
513
|
+
{
|
|
514
|
+
key: 'resend-mcp', label: 'Resend Email',
|
|
515
|
+
description: 'Transactional email via Resend.',
|
|
516
|
+
useWhen: 'Repos using Resend.',
|
|
517
|
+
adoption: 'Requires: RESEND_API_KEY.',
|
|
518
|
+
trustLevel: 'medium', transport: 'stdio', requiredAuth: ['RESEND_API_KEY'],
|
|
519
|
+
serverName: 'resend',
|
|
520
|
+
jsoncProjection: { command: ['npx', '-y', 'resend-mcp-server@latest'], environment: { RESEND_API_KEY: '${RESEND_API_KEY}' } },
|
|
521
|
+
enabledTools: ['send_email', 'list_domains', 'get_email'],
|
|
522
|
+
},
|
|
523
|
+
{
|
|
524
|
+
key: 'temporal-mcp', label: 'Temporal Workflow',
|
|
525
|
+
description: 'Workflow orchestration via Temporal.',
|
|
526
|
+
useWhen: 'Repos using Temporal.',
|
|
527
|
+
adoption: 'Requires: TEMPORAL_ADDRESS.',
|
|
528
|
+
trustLevel: 'medium', transport: 'stdio', requiredAuth: ['TEMPORAL_ADDRESS'],
|
|
529
|
+
serverName: 'temporal',
|
|
530
|
+
jsoncProjection: { command: ['npx', '-y', 'temporal-mcp-server@latest'], environment: { TEMPORAL_ADDRESS: '${TEMPORAL_ADDRESS}' } },
|
|
531
|
+
enabledTools: ['list_workflows', 'get_workflow', 'signal_workflow'],
|
|
532
|
+
},
|
|
533
|
+
{
|
|
534
|
+
key: 'launchdarkly-mcp', label: 'LaunchDarkly',
|
|
535
|
+
description: 'Feature flags via LaunchDarkly.',
|
|
536
|
+
useWhen: 'Repos using LaunchDarkly.',
|
|
537
|
+
adoption: 'Requires: LAUNCHDARKLY_ACCESS_TOKEN.',
|
|
538
|
+
trustLevel: 'medium', transport: 'stdio', requiredAuth: ['LAUNCHDARKLY_ACCESS_TOKEN'],
|
|
539
|
+
serverName: 'launchdarkly',
|
|
540
|
+
jsoncProjection: { command: ['npx', '-y', 'launchdarkly-mcp-server@latest'], environment: { LAUNCHDARKLY_ACCESS_TOKEN: '${LAUNCHDARKLY_ACCESS_TOKEN}' } },
|
|
541
|
+
enabledTools: ['list_flags', 'get_flag', 'toggle_flag'],
|
|
542
|
+
},
|
|
543
|
+
{
|
|
544
|
+
key: 'datadog-mcp', label: 'Datadog',
|
|
545
|
+
description: 'Monitoring and APM via Datadog.',
|
|
546
|
+
useWhen: 'Repos using Datadog.',
|
|
547
|
+
adoption: 'Requires: DATADOG_API_KEY, DATADOG_APP_KEY.',
|
|
548
|
+
trustLevel: 'medium', transport: 'stdio', requiredAuth: ['DATADOG_API_KEY', 'DATADOG_APP_KEY'],
|
|
549
|
+
serverName: 'datadog',
|
|
550
|
+
jsoncProjection: { command: ['npx', '-y', '@datadog/mcp-server@latest'], environment: { DATADOG_API_KEY: '${DATADOG_API_KEY}', DATADOG_APP_KEY: '${DATADOG_APP_KEY}' } },
|
|
551
|
+
enabledTools: ['query_metrics', 'list_monitors', 'search_logs'],
|
|
552
|
+
},
|
|
553
|
+
{
|
|
554
|
+
key: 'grafana-mcp', label: 'Grafana',
|
|
555
|
+
description: 'Dashboards via Grafana.',
|
|
556
|
+
useWhen: 'Repos using Grafana.',
|
|
557
|
+
adoption: 'Requires: GRAFANA_URL, GRAFANA_API_KEY.',
|
|
558
|
+
trustLevel: 'medium', transport: 'stdio', requiredAuth: ['GRAFANA_URL', 'GRAFANA_API_KEY'],
|
|
559
|
+
serverName: 'grafana',
|
|
560
|
+
jsoncProjection: { command: ['npx', '-y', 'grafana-mcp-server@latest'], environment: { GRAFANA_URL: '${GRAFANA_URL}', GRAFANA_API_KEY: '${GRAFANA_API_KEY}' } },
|
|
561
|
+
enabledTools: ['list_dashboards', 'get_panel', 'query_datasource'],
|
|
562
|
+
},
|
|
563
|
+
{
|
|
564
|
+
key: 'circleci-mcp', label: 'CircleCI',
|
|
565
|
+
description: 'CI/CD via CircleCI.',
|
|
566
|
+
useWhen: 'Repos using CircleCI.',
|
|
567
|
+
adoption: 'Requires: CIRCLECI_TOKEN.',
|
|
568
|
+
trustLevel: 'medium', transport: 'stdio', requiredAuth: ['CIRCLECI_TOKEN'],
|
|
569
|
+
serverName: 'circleci',
|
|
570
|
+
jsoncProjection: { command: ['npx', '-y', 'circleci-mcp-server@latest'], environment: { CIRCLECI_TOKEN: '${CIRCLECI_TOKEN}' } },
|
|
571
|
+
enabledTools: ['list_pipelines', 'get_pipeline', 'list_jobs'],
|
|
572
|
+
},
|
|
573
|
+
{
|
|
574
|
+
key: 'anthropic-mcp', label: 'Anthropic Claude API',
|
|
575
|
+
description: 'Claude API for AI-powered apps.',
|
|
576
|
+
useWhen: 'Repos building on Claude API.',
|
|
577
|
+
adoption: 'Requires: ANTHROPIC_API_KEY.',
|
|
578
|
+
trustLevel: 'high', transport: 'stdio', requiredAuth: ['ANTHROPIC_API_KEY'],
|
|
579
|
+
serverName: 'anthropic',
|
|
580
|
+
jsoncProjection: { command: ['npx', '-y', '@anthropic-ai/mcp-server@latest'], environment: { ANTHROPIC_API_KEY: '${ANTHROPIC_API_KEY}' } },
|
|
581
|
+
enabledTools: ['create_message', 'list_models'],
|
|
582
|
+
},
|
|
583
|
+
];
|
|
584
|
+
|
|
585
|
+
// --- Helpers ---
|
|
586
|
+
|
|
587
|
+
function getOpenCodeMcpPack(key) {
|
|
588
|
+
return OPENCODE_MCP_PACKS.find(pack => pack.key === key) || null;
|
|
589
|
+
}
|
|
590
|
+
|
|
591
|
+
function normalizeOpenCodeMcpPackKeys(keys = []) {
|
|
592
|
+
return [...new Set((Array.isArray(keys) ? keys : [])
|
|
593
|
+
.map(key => `${key}`.trim())
|
|
594
|
+
.filter(Boolean))]
|
|
595
|
+
.filter(key => !!getOpenCodeMcpPack(key));
|
|
596
|
+
}
|
|
597
|
+
|
|
598
|
+
function packToJsonc(pack) {
|
|
599
|
+
const proj = pack.jsoncProjection;
|
|
600
|
+
const entry = {};
|
|
601
|
+
if (proj.command) entry.command = proj.command;
|
|
602
|
+
if (proj.environment) entry.environment = proj.environment;
|
|
603
|
+
if (pack.enabledTools && pack.enabledTools.length > 0) {
|
|
604
|
+
entry.tools = {};
|
|
605
|
+
for (const tool of pack.enabledTools) {
|
|
606
|
+
entry.tools[tool] = true;
|
|
607
|
+
}
|
|
608
|
+
}
|
|
609
|
+
return { [pack.serverName]: entry };
|
|
610
|
+
}
|
|
611
|
+
|
|
612
|
+
function packsToJsonc(packKeys = []) {
|
|
613
|
+
const mcp = {};
|
|
614
|
+
for (const key of normalizeOpenCodeMcpPackKeys(packKeys)) {
|
|
615
|
+
const pack = getOpenCodeMcpPack(key);
|
|
616
|
+
if (!pack) continue;
|
|
617
|
+
Object.assign(mcp, packToJsonc(pack));
|
|
618
|
+
}
|
|
619
|
+
return JSON.stringify({ mcp }, null, 2);
|
|
620
|
+
}
|
|
621
|
+
|
|
622
|
+
function hasPostgresSignals(ctx, deps) {
|
|
623
|
+
const hasDep = (name) => Object.prototype.hasOwnProperty.call(deps || {}, name);
|
|
624
|
+
return hasDep('pg') || hasDep('postgres') || hasDep('prisma') || hasDep('@prisma/client');
|
|
625
|
+
}
|
|
626
|
+
|
|
627
|
+
function getProjectDependencies(ctx) {
|
|
628
|
+
if (typeof ctx.projectDependencies === 'function') return ctx.projectDependencies();
|
|
629
|
+
const pkg = ctx.jsonFile('package.json') || {};
|
|
630
|
+
return { ...(pkg.dependencies || {}), ...(pkg.devDependencies || {}) };
|
|
631
|
+
}
|
|
632
|
+
|
|
633
|
+
function recommendOpenCodeMcpPacks(stacks = [], domainPacks = [], options = {}) {
|
|
634
|
+
const ctx = options.ctx || null;
|
|
635
|
+
const stackKeys = new Set(stacks.map(s => s.key));
|
|
636
|
+
const domainKeys = new Set(domainPacks.map(p => p.key));
|
|
637
|
+
const deps = ctx ? getProjectDependencies(ctx) : {};
|
|
638
|
+
const recommended = [];
|
|
639
|
+
|
|
640
|
+
function add(key, reason) {
|
|
641
|
+
if (recommended.some(r => r.key === key)) return;
|
|
642
|
+
const pack = getOpenCodeMcpPack(key);
|
|
643
|
+
if (!pack) return;
|
|
644
|
+
recommended.push({ ...pack, matchReason: reason });
|
|
645
|
+
}
|
|
646
|
+
|
|
647
|
+
// Always recommend docs
|
|
648
|
+
add('context7-docs', 'Safe default for up-to-date docs.');
|
|
649
|
+
|
|
650
|
+
// GitHub for GitHub repos
|
|
651
|
+
if (ctx && (ctx.hasDir('.github') || ctx.fileContent('.git/config'))) {
|
|
652
|
+
add('github-mcp', 'GitHub-hosted repo detected.');
|
|
653
|
+
}
|
|
654
|
+
|
|
655
|
+
// Frontend packs
|
|
656
|
+
if (stackKeys.has('react') || stackKeys.has('nextjs') || stackKeys.has('vue') || domainKeys.has('frontend-ui')) {
|
|
657
|
+
add('playwright-mcp', 'Frontend stack detected.');
|
|
658
|
+
}
|
|
659
|
+
if (stackKeys.has('nextjs')) {
|
|
660
|
+
add('next-devtools', 'Next.js detected.');
|
|
661
|
+
}
|
|
662
|
+
|
|
663
|
+
// Backend / data packs
|
|
664
|
+
if (ctx && hasPostgresSignals(ctx, deps)) {
|
|
665
|
+
add('postgres-mcp', 'PostgreSQL signals detected.');
|
|
666
|
+
}
|
|
667
|
+
|
|
668
|
+
// Docker
|
|
669
|
+
if (stackKeys.has('docker') || (ctx && (ctx.fileContent('Dockerfile') || ctx.fileContent('docker-compose.yml')))) {
|
|
670
|
+
add('docker-mcp', 'Docker usage detected.');
|
|
671
|
+
}
|
|
672
|
+
|
|
673
|
+
// Security scanner for multi-MCP
|
|
674
|
+
if (recommended.length >= 2) {
|
|
675
|
+
add('mcp-security', 'Multiple MCP servers — security scanner recommended.');
|
|
676
|
+
}
|
|
677
|
+
|
|
678
|
+
return recommended;
|
|
679
|
+
}
|
|
680
|
+
|
|
681
|
+
function getOpenCodeMcpPreflight(packKeys = []) {
|
|
682
|
+
return normalizeOpenCodeMcpPackKeys(packKeys).map(key => {
|
|
683
|
+
const pack = getOpenCodeMcpPack(key);
|
|
684
|
+
if (!pack) return { key, safe: false, warning: `Unknown pack "${key}".` };
|
|
685
|
+
if (pack.requiredAuth.length === 0) {
|
|
686
|
+
return { key, label: pack.label, safe: true, warning: null };
|
|
687
|
+
}
|
|
688
|
+
return {
|
|
689
|
+
key,
|
|
690
|
+
label: pack.label,
|
|
691
|
+
safe: false,
|
|
692
|
+
warning: `Requires: ${pack.requiredAuth.join(', ')}. Set these as environment variables before enabling.`,
|
|
693
|
+
};
|
|
694
|
+
});
|
|
695
|
+
}
|
|
696
|
+
|
|
697
|
+
module.exports = {
|
|
698
|
+
OPENCODE_MCP_PACKS,
|
|
699
|
+
getOpenCodeMcpPack,
|
|
700
|
+
normalizeOpenCodeMcpPackKeys,
|
|
701
|
+
packToJsonc,
|
|
702
|
+
packsToJsonc,
|
|
703
|
+
recommendOpenCodeMcpPacks,
|
|
704
|
+
getOpenCodeMcpPreflight,
|
|
705
|
+
};
|