@stacksfinder/mcp-server 1.2.1 → 1.3.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 +16 -16
- package/README.md +126 -65
- package/dist/__tests__/mcp-tools.test.d.ts +8 -0
- package/dist/__tests__/mcp-tools.test.d.ts.map +1 -0
- package/dist/__tests__/mcp-tools.test.js +345 -0
- package/dist/__tests__/mcp-tools.test.js.map +1 -0
- package/dist/annotations.d.ts +63 -0
- package/dist/annotations.d.ts.map +1 -0
- package/dist/annotations.js +215 -0
- package/dist/annotations.js.map +1 -0
- package/dist/server.d.ts.map +1 -1
- package/dist/server.js +93 -22
- package/dist/server.js.map +1 -1
- package/dist/tools/audit.d.ts +4 -4
- package/dist/tools/audit.js +42 -42
- package/dist/tools/audit.js.map +1 -1
- package/dist/tools/check-compatibility.d.ts +1 -1
- package/dist/tools/check-compatibility.d.ts.map +1 -1
- package/dist/tools/check-compatibility.js +17 -17
- package/dist/tools/check-compatibility.js.map +1 -1
- package/dist/tools/estimator.d.ts +85 -0
- package/dist/tools/estimator.d.ts.map +1 -0
- package/dist/tools/estimator.js +326 -0
- package/dist/tools/estimator.js.map +1 -0
- package/dist/tools/project-kit/analyze-repo.js +12 -12
- package/dist/tools/project-kit/analyze-repo.js.map +1 -1
- package/package.json +4 -8
- package/dist/compatibility/index.d.ts +0 -11
- package/dist/compatibility/index.d.ts.map +0 -1
- package/dist/compatibility/index.js +0 -13
- package/dist/compatibility/index.js.map +0 -1
- package/dist/compatibility/rules.d.ts +0 -29
- package/dist/compatibility/rules.d.ts.map +0 -1
- package/dist/compatibility/rules.js +0 -419
- package/dist/compatibility/rules.js.map +0 -1
- package/dist/compatibility/scoring.d.ts +0 -54
- package/dist/compatibility/scoring.d.ts.map +0 -1
- package/dist/compatibility/scoring.js +0 -209
- package/dist/compatibility/scoring.js.map +0 -1
- package/dist/compatibility/types.d.ts +0 -176
- package/dist/compatibility/types.d.ts.map +0 -1
- package/dist/compatibility/types.js +0 -26
- package/dist/compatibility/types.js.map +0 -1
- package/dist/compatibility/utils.d.ts +0 -82
- package/dist/compatibility/utils.d.ts.map +0 -1
- package/dist/compatibility/utils.js +0 -269
- package/dist/compatibility/utils.js.map +0 -1
- package/dist/data/357/200/242/357/200/212cp H:bac_/303/240_guigui_v2stack_finderpackagesmcp-serversrcdatacompatibility_matrix.json H:bac_/303/240_guigui_v2stack_finderpackagesmcp-serverdistdata/357/200/242" +0 -226
- package/dist/http.d.ts +0 -7
- package/dist/http.d.ts.map +0 -1
- package/dist/http.js +0 -69
- package/dist/http.js.map +0 -1
- package/dist/lib/mcp-compatibility/index.d.ts +0 -33
- package/dist/lib/mcp-compatibility/index.d.ts.map +0 -1
- package/dist/lib/mcp-compatibility/index.js +0 -35
- package/dist/lib/mcp-compatibility/index.js.map +0 -1
- package/dist/lib/mcp-compatibility/rules.d.ts +0 -29
- package/dist/lib/mcp-compatibility/rules.d.ts.map +0 -1
- package/dist/lib/mcp-compatibility/rules.js +0 -419
- package/dist/lib/mcp-compatibility/rules.js.map +0 -1
- package/dist/lib/mcp-compatibility/scoring.d.ts +0 -54
- package/dist/lib/mcp-compatibility/scoring.d.ts.map +0 -1
- package/dist/lib/mcp-compatibility/scoring.js +0 -209
- package/dist/lib/mcp-compatibility/scoring.js.map +0 -1
- package/dist/lib/mcp-compatibility/types.d.ts +0 -176
- package/dist/lib/mcp-compatibility/types.d.ts.map +0 -1
- package/dist/lib/mcp-compatibility/types.js +0 -26
- package/dist/lib/mcp-compatibility/types.js.map +0 -1
- package/dist/lib/mcp-compatibility/utils.d.ts +0 -82
- package/dist/lib/mcp-compatibility/utils.d.ts.map +0 -1
- package/dist/lib/mcp-compatibility/utils.js +0 -269
- package/dist/lib/mcp-compatibility/utils.js.map +0 -1
|
@@ -1,269 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* MCP Compatibility Utilities
|
|
3
|
-
*
|
|
4
|
-
* Canonical matching utilities for consistent MCP identification.
|
|
5
|
-
*/
|
|
6
|
-
/**
|
|
7
|
-
* Aliases map for common MCP name variations.
|
|
8
|
-
* Keys are normalized (lowercase, trimmed), values are canonical IDs.
|
|
9
|
-
*/
|
|
10
|
-
export const MCP_ALIASES = {
|
|
11
|
-
// Database MCPs
|
|
12
|
-
supabase: 'supabase-mcp',
|
|
13
|
-
'@supabase/mcp': 'supabase-mcp',
|
|
14
|
-
'@supabase/mcp-server': 'supabase-mcp',
|
|
15
|
-
neon: 'neon-mcp',
|
|
16
|
-
'@neondatabase/mcp': 'neon-mcp',
|
|
17
|
-
'@neondatabase/mcp-server': 'neon-mcp',
|
|
18
|
-
planetscale: 'planetscale-mcp',
|
|
19
|
-
'@planetscale/mcp': 'planetscale-mcp',
|
|
20
|
-
turso: 'turso-mcp',
|
|
21
|
-
'@tursodb/mcp': 'turso-mcp',
|
|
22
|
-
mongodb: 'mongodb-mcp',
|
|
23
|
-
'@mongodb/mcp': 'mongodb-mcp',
|
|
24
|
-
// ORM MCPs
|
|
25
|
-
prisma: 'prisma-mcp',
|
|
26
|
-
'@prisma/mcp': 'prisma-mcp',
|
|
27
|
-
drizzle: 'drizzle-mcp',
|
|
28
|
-
'drizzle-orm': 'drizzle-mcp',
|
|
29
|
-
typeorm: 'typeorm-mcp',
|
|
30
|
-
// Auth MCPs
|
|
31
|
-
clerk: 'clerk-mcp',
|
|
32
|
-
'@clerk/mcp': 'clerk-mcp',
|
|
33
|
-
auth0: 'auth0-mcp',
|
|
34
|
-
'@auth0/mcp': 'auth0-mcp',
|
|
35
|
-
'supabase-auth': 'supabase-auth-mcp',
|
|
36
|
-
lucia: 'lucia-mcp',
|
|
37
|
-
// Payments MCPs
|
|
38
|
-
stripe: 'stripe-mcp',
|
|
39
|
-
'@stripe/mcp': 'stripe-mcp',
|
|
40
|
-
paddle: 'paddle-mcp',
|
|
41
|
-
'@paddle/mcp': 'paddle-mcp',
|
|
42
|
-
lemonsqueezy: 'lemonsqueezy-mcp',
|
|
43
|
-
'lemon-squeezy': 'lemonsqueezy-mcp',
|
|
44
|
-
// Deployment MCPs
|
|
45
|
-
vercel: 'vercel-mcp',
|
|
46
|
-
'@vercel/mcp': 'vercel-mcp',
|
|
47
|
-
netlify: 'netlify-mcp',
|
|
48
|
-
'@netlify/mcp': 'netlify-mcp',
|
|
49
|
-
cloudflare: 'cloudflare-mcp',
|
|
50
|
-
'@cloudflare/mcp': 'cloudflare-mcp',
|
|
51
|
-
railway: 'railway-mcp',
|
|
52
|
-
fly: 'fly-mcp',
|
|
53
|
-
'fly.io': 'fly-mcp',
|
|
54
|
-
render: 'render-mcp',
|
|
55
|
-
// Storage MCPs
|
|
56
|
-
r2: 'r2-mcp',
|
|
57
|
-
'cloudflare-r2': 'r2-mcp',
|
|
58
|
-
s3: 's3-mcp',
|
|
59
|
-
'aws-s3': 's3-mcp',
|
|
60
|
-
uploadthing: 'uploadthing-mcp',
|
|
61
|
-
// Email MCPs
|
|
62
|
-
resend: 'resend-mcp',
|
|
63
|
-
'@resend/mcp': 'resend-mcp',
|
|
64
|
-
sendgrid: 'sendgrid-mcp',
|
|
65
|
-
postmark: 'postmark-mcp',
|
|
66
|
-
// Version Control MCPs
|
|
67
|
-
github: 'github-mcp',
|
|
68
|
-
'@github/mcp': 'github-mcp',
|
|
69
|
-
gitlab: 'gitlab-mcp',
|
|
70
|
-
'@gitlab/mcp': 'gitlab-mcp',
|
|
71
|
-
// AI MCPs
|
|
72
|
-
openai: 'openai-mcp',
|
|
73
|
-
'@openai/mcp': 'openai-mcp',
|
|
74
|
-
anthropic: 'anthropic-mcp',
|
|
75
|
-
'@anthropic/mcp': 'anthropic-mcp',
|
|
76
|
-
perplexity: 'perplexity-mcp',
|
|
77
|
-
context7: 'context7-mcp',
|
|
78
|
-
// Communication MCPs
|
|
79
|
-
slack: 'slack-mcp',
|
|
80
|
-
'@slack/mcp': 'slack-mcp',
|
|
81
|
-
discord: 'discord-mcp',
|
|
82
|
-
telegram: 'telegram-mcp',
|
|
83
|
-
// Monitoring MCPs
|
|
84
|
-
sentry: 'sentry-mcp',
|
|
85
|
-
'@sentry/mcp': 'sentry-mcp',
|
|
86
|
-
datadog: 'datadog-mcp',
|
|
87
|
-
// Testing MCPs
|
|
88
|
-
playwright: 'playwright-mcp',
|
|
89
|
-
'@playwright/mcp': 'playwright-mcp',
|
|
90
|
-
puppeteer: 'puppeteer-mcp',
|
|
91
|
-
// Documentation MCPs
|
|
92
|
-
obsidian: 'obsidian-mcp',
|
|
93
|
-
notion: 'notion-mcp',
|
|
94
|
-
confluence: 'confluence-mcp',
|
|
95
|
-
// General MCPs
|
|
96
|
-
filesystem: 'filesystem-mcp',
|
|
97
|
-
'sequential-thinking': 'sequential-thinking-mcp',
|
|
98
|
-
'brave-search': 'brave-search-mcp',
|
|
99
|
-
};
|
|
100
|
-
/**
|
|
101
|
-
* Canonicalize an MCP ID to a consistent format.
|
|
102
|
-
*
|
|
103
|
-
* @param id - The MCP ID to canonicalize (e.g., "supabase", "@supabase/mcp")
|
|
104
|
-
* @returns The canonical ID (e.g., "supabase-mcp")
|
|
105
|
-
*/
|
|
106
|
-
export function canonicalizeMcpId(id) {
|
|
107
|
-
const normalized = id.toLowerCase().trim();
|
|
108
|
-
return MCP_ALIASES[normalized] ?? normalized;
|
|
109
|
-
}
|
|
110
|
-
/**
|
|
111
|
-
* Generate a consistent pair key for two MCPs.
|
|
112
|
-
* The key is ordered alphabetically to ensure A/B and B/A produce the same key.
|
|
113
|
-
*
|
|
114
|
-
* @param a - First MCP ID
|
|
115
|
-
* @param b - Second MCP ID
|
|
116
|
-
* @returns Pair key in format "mcpA::mcpB" (alphabetically ordered)
|
|
117
|
-
*/
|
|
118
|
-
export function pairKey(a, b) {
|
|
119
|
-
const canonA = canonicalizeMcpId(a);
|
|
120
|
-
const canonB = canonicalizeMcpId(b);
|
|
121
|
-
const [first, second] = [canonA, canonB].sort();
|
|
122
|
-
return `${first}::${second}`;
|
|
123
|
-
}
|
|
124
|
-
/**
|
|
125
|
-
* Rules indexed by pair key for O(1) lookup.
|
|
126
|
-
* Populated by initRulesIndex().
|
|
127
|
-
*/
|
|
128
|
-
let RULES_BY_PAIR = new Map();
|
|
129
|
-
/**
|
|
130
|
-
* Initialize the rules index from an array of rules.
|
|
131
|
-
* Must be called before using findRule().
|
|
132
|
-
*
|
|
133
|
-
* @param rules - Array of compatibility rules
|
|
134
|
-
*/
|
|
135
|
-
export function initRulesIndex(rules) {
|
|
136
|
-
RULES_BY_PAIR = new Map();
|
|
137
|
-
for (const rule of rules) {
|
|
138
|
-
const key = pairKey(rule.mcpA, rule.mcpB);
|
|
139
|
-
RULES_BY_PAIR.set(key, rule);
|
|
140
|
-
}
|
|
141
|
-
}
|
|
142
|
-
/**
|
|
143
|
-
* Get the rules index (for testing).
|
|
144
|
-
*/
|
|
145
|
-
export function getRulesIndex() {
|
|
146
|
-
return RULES_BY_PAIR;
|
|
147
|
-
}
|
|
148
|
-
/**
|
|
149
|
-
* Find a compatibility rule for two MCPs.
|
|
150
|
-
* Order doesn't matter: findRule(A, B) === findRule(B, A)
|
|
151
|
-
*
|
|
152
|
-
* @param a - First MCP ID (can be any alias)
|
|
153
|
-
* @param b - Second MCP ID (can be any alias)
|
|
154
|
-
* @returns The matching rule, or undefined if no rule exists
|
|
155
|
-
*/
|
|
156
|
-
export function findRule(a, b) {
|
|
157
|
-
const key = pairKey(a, b);
|
|
158
|
-
return RULES_BY_PAIR.get(key);
|
|
159
|
-
}
|
|
160
|
-
/**
|
|
161
|
-
* Generate all unique pairs from an array of MCPs.
|
|
162
|
-
* Used to check all nC2 combinations.
|
|
163
|
-
*
|
|
164
|
-
* @param mcps - Array of MCP IDs
|
|
165
|
-
* @returns Array of [mcpA, mcpB] pairs
|
|
166
|
-
*/
|
|
167
|
-
export function generatePairs(mcps) {
|
|
168
|
-
const pairs = [];
|
|
169
|
-
for (let i = 0; i < mcps.length; i++) {
|
|
170
|
-
for (let j = i + 1; j < mcps.length; j++) {
|
|
171
|
-
pairs.push([mcps[i], mcps[j]]);
|
|
172
|
-
}
|
|
173
|
-
}
|
|
174
|
-
return pairs;
|
|
175
|
-
}
|
|
176
|
-
/**
|
|
177
|
-
* Check all pairs of MCPs for compatibility issues.
|
|
178
|
-
*
|
|
179
|
-
* @param mcps - Array of MCP IDs to check
|
|
180
|
-
* @returns Object with categorized matched rules
|
|
181
|
-
*/
|
|
182
|
-
export function checkAllPairs(mcps) {
|
|
183
|
-
const conflicts = [];
|
|
184
|
-
const redundancies = [];
|
|
185
|
-
const synergies = [];
|
|
186
|
-
const conditionals = [];
|
|
187
|
-
const pairs = generatePairs(mcps);
|
|
188
|
-
for (const [a, b] of pairs) {
|
|
189
|
-
const rule = findRule(a, b);
|
|
190
|
-
if (rule) {
|
|
191
|
-
const matched = {
|
|
192
|
-
rule,
|
|
193
|
-
inputA: a,
|
|
194
|
-
inputB: b,
|
|
195
|
-
};
|
|
196
|
-
switch (rule.status) {
|
|
197
|
-
case 'conflict':
|
|
198
|
-
conflicts.push(matched);
|
|
199
|
-
break;
|
|
200
|
-
case 'redundant':
|
|
201
|
-
redundancies.push(matched);
|
|
202
|
-
break;
|
|
203
|
-
case 'synergy':
|
|
204
|
-
synergies.push(matched);
|
|
205
|
-
break;
|
|
206
|
-
case 'conditional':
|
|
207
|
-
conditionals.push(matched);
|
|
208
|
-
break;
|
|
209
|
-
// 'compatible' - no action needed
|
|
210
|
-
}
|
|
211
|
-
}
|
|
212
|
-
}
|
|
213
|
-
return { conflicts, redundancies, synergies, conditionals };
|
|
214
|
-
}
|
|
215
|
-
/**
|
|
216
|
-
* Get suggestions based on synergy rules.
|
|
217
|
-
* If user has MCP A and rule says A+B is a synergy,
|
|
218
|
-
* suggest B if user doesn't have it.
|
|
219
|
-
*
|
|
220
|
-
* @param mcps - Array of installed MCP IDs
|
|
221
|
-
* @param allRules - All compatibility rules
|
|
222
|
-
* @returns Array of suggestions
|
|
223
|
-
*/
|
|
224
|
-
export function getSuggestions(mcps, allRules) {
|
|
225
|
-
const suggestions = [];
|
|
226
|
-
const canonicalMcps = new Set(mcps.map(canonicalizeMcpId));
|
|
227
|
-
const suggestedSet = new Set();
|
|
228
|
-
// Find synergy rules where user has one but not the other
|
|
229
|
-
for (const rule of allRules) {
|
|
230
|
-
if (rule.status !== 'synergy')
|
|
231
|
-
continue;
|
|
232
|
-
const hasA = canonicalMcps.has(rule.mcpA);
|
|
233
|
-
const hasB = canonicalMcps.has(rule.mcpB);
|
|
234
|
-
// If user has A but not B
|
|
235
|
-
if (hasA && !hasB && !suggestedSet.has(rule.mcpB)) {
|
|
236
|
-
suggestions.push({
|
|
237
|
-
mcp: rule.mcpB,
|
|
238
|
-
reason: rule.reason,
|
|
239
|
-
basedOn: rule.mcpA,
|
|
240
|
-
});
|
|
241
|
-
suggestedSet.add(rule.mcpB);
|
|
242
|
-
}
|
|
243
|
-
// If user has B but not A
|
|
244
|
-
if (hasB && !hasA && !suggestedSet.has(rule.mcpA)) {
|
|
245
|
-
suggestions.push({
|
|
246
|
-
mcp: rule.mcpA,
|
|
247
|
-
reason: rule.reason,
|
|
248
|
-
basedOn: rule.mcpB,
|
|
249
|
-
});
|
|
250
|
-
suggestedSet.add(rule.mcpA);
|
|
251
|
-
}
|
|
252
|
-
// Check suggestWhenMissing field
|
|
253
|
-
if (rule.suggestWhenMissing && (hasA || hasB)) {
|
|
254
|
-
for (const suggested of rule.suggestWhenMissing) {
|
|
255
|
-
const canonSuggested = canonicalizeMcpId(suggested);
|
|
256
|
-
if (!canonicalMcps.has(canonSuggested) && !suggestedSet.has(canonSuggested)) {
|
|
257
|
-
suggestions.push({
|
|
258
|
-
mcp: canonSuggested,
|
|
259
|
-
reason: `Pairs well with ${hasA ? rule.mcpA : rule.mcpB}`,
|
|
260
|
-
basedOn: hasA ? rule.mcpA : rule.mcpB,
|
|
261
|
-
});
|
|
262
|
-
suggestedSet.add(canonSuggested);
|
|
263
|
-
}
|
|
264
|
-
}
|
|
265
|
-
}
|
|
266
|
-
}
|
|
267
|
-
return suggestions;
|
|
268
|
-
}
|
|
269
|
-
//# sourceMappingURL=utils.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"utils.js","sourceRoot":"","sources":["../../src/compatibility/utils.ts"],"names":[],"mappings":"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"}
|
|
@@ -1,226 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"$version": "1.0.0",
|
|
3
|
-
"$description": "Base scores for 20 MVP technologies across 6 criteria",
|
|
4
|
-
"technologies": {
|
|
5
|
-
"react": {
|
|
6
|
-
"id": "react",
|
|
7
|
-
"name": "React",
|
|
8
|
-
"category": "frontend",
|
|
9
|
-
"url": "https://react.dev",
|
|
10
|
-
"scores": {
|
|
11
|
-
"default": { "perf": 75, "dx": 85, "ecosystem": 95, "maintain": 80, "cost": 90, "compliance": 85 },
|
|
12
|
-
"mvp": { "perf": 70, "dx": 80, "ecosystem": 95, "maintain": 75, "cost": 95, "compliance": 85 },
|
|
13
|
-
"enterprise": { "perf": 80, "dx": 85, "ecosystem": 95, "maintain": 85, "cost": 85, "compliance": 90 }
|
|
14
|
-
}
|
|
15
|
-
},
|
|
16
|
-
"vue": {
|
|
17
|
-
"id": "vue",
|
|
18
|
-
"name": "Vue",
|
|
19
|
-
"category": "frontend",
|
|
20
|
-
"url": "https://vuejs.org",
|
|
21
|
-
"scores": {
|
|
22
|
-
"default": { "perf": 80, "dx": 90, "ecosystem": 80, "maintain": 85, "cost": 90, "compliance": 85 },
|
|
23
|
-
"mvp": { "perf": 75, "dx": 92, "ecosystem": 75, "maintain": 85, "cost": 95, "compliance": 85 },
|
|
24
|
-
"enterprise": { "perf": 80, "dx": 88, "ecosystem": 80, "maintain": 85, "cost": 85, "compliance": 85 }
|
|
25
|
-
}
|
|
26
|
-
},
|
|
27
|
-
"svelte": {
|
|
28
|
-
"id": "svelte",
|
|
29
|
-
"name": "Svelte",
|
|
30
|
-
"category": "frontend",
|
|
31
|
-
"url": "https://svelte.dev",
|
|
32
|
-
"scores": {
|
|
33
|
-
"default": { "perf": 95, "dx": 92, "ecosystem": 65, "maintain": 90, "cost": 95, "compliance": 85 },
|
|
34
|
-
"mvp": { "perf": 95, "dx": 95, "ecosystem": 60, "maintain": 90, "cost": 98, "compliance": 85 },
|
|
35
|
-
"enterprise": { "perf": 95, "dx": 90, "ecosystem": 65, "maintain": 90, "cost": 90, "compliance": 85 }
|
|
36
|
-
}
|
|
37
|
-
},
|
|
38
|
-
"solid": {
|
|
39
|
-
"id": "solid",
|
|
40
|
-
"name": "SolidJS",
|
|
41
|
-
"category": "frontend",
|
|
42
|
-
"url": "https://www.solidjs.com",
|
|
43
|
-
"scores": {
|
|
44
|
-
"default": { "perf": 98, "dx": 85, "ecosystem": 50, "maintain": 85, "cost": 95, "compliance": 85 },
|
|
45
|
-
"mvp": { "perf": 98, "dx": 82, "ecosystem": 45, "maintain": 80, "cost": 98, "compliance": 85 },
|
|
46
|
-
"enterprise": { "perf": 98, "dx": 80, "ecosystem": 50, "maintain": 80, "cost": 90, "compliance": 85 }
|
|
47
|
-
}
|
|
48
|
-
},
|
|
49
|
-
"nextjs": {
|
|
50
|
-
"id": "nextjs",
|
|
51
|
-
"name": "Next.js",
|
|
52
|
-
"category": "meta-framework",
|
|
53
|
-
"url": "https://nextjs.org",
|
|
54
|
-
"scores": {
|
|
55
|
-
"default": { "perf": 85, "dx": 88, "ecosystem": 92, "maintain": 82, "cost": 75, "compliance": 90 },
|
|
56
|
-
"mvp": { "perf": 80, "dx": 90, "ecosystem": 92, "maintain": 80, "cost": 80, "compliance": 88 },
|
|
57
|
-
"enterprise": { "perf": 88, "dx": 85, "ecosystem": 95, "maintain": 85, "cost": 70, "compliance": 92 }
|
|
58
|
-
}
|
|
59
|
-
},
|
|
60
|
-
"nuxt": {
|
|
61
|
-
"id": "nuxt",
|
|
62
|
-
"name": "Nuxt",
|
|
63
|
-
"category": "meta-framework",
|
|
64
|
-
"url": "https://nuxt.com",
|
|
65
|
-
"scores": {
|
|
66
|
-
"default": { "perf": 82, "dx": 90, "ecosystem": 78, "maintain": 85, "cost": 85, "compliance": 88 },
|
|
67
|
-
"mvp": { "perf": 80, "dx": 92, "ecosystem": 75, "maintain": 85, "cost": 90, "compliance": 88 },
|
|
68
|
-
"enterprise": { "perf": 82, "dx": 88, "ecosystem": 78, "maintain": 85, "cost": 80, "compliance": 88 }
|
|
69
|
-
}
|
|
70
|
-
},
|
|
71
|
-
"sveltekit": {
|
|
72
|
-
"id": "sveltekit",
|
|
73
|
-
"name": "SvelteKit",
|
|
74
|
-
"category": "meta-framework",
|
|
75
|
-
"url": "https://kit.svelte.dev",
|
|
76
|
-
"scores": {
|
|
77
|
-
"default": { "perf": 92, "dx": 95, "ecosystem": 65, "maintain": 90, "cost": 90, "compliance": 88 },
|
|
78
|
-
"mvp": { "perf": 92, "dx": 98, "ecosystem": 60, "maintain": 90, "cost": 95, "compliance": 88 },
|
|
79
|
-
"enterprise": { "perf": 92, "dx": 92, "ecosystem": 68, "maintain": 90, "cost": 85, "compliance": 90 }
|
|
80
|
-
}
|
|
81
|
-
},
|
|
82
|
-
"remix": {
|
|
83
|
-
"id": "remix",
|
|
84
|
-
"name": "Remix",
|
|
85
|
-
"category": "meta-framework",
|
|
86
|
-
"url": "https://remix.run",
|
|
87
|
-
"scores": {
|
|
88
|
-
"default": { "perf": 88, "dx": 85, "ecosystem": 70, "maintain": 88, "cost": 85, "compliance": 90 },
|
|
89
|
-
"mvp": { "perf": 85, "dx": 82, "ecosystem": 65, "maintain": 85, "cost": 88, "compliance": 90 },
|
|
90
|
-
"enterprise": { "perf": 90, "dx": 85, "ecosystem": 72, "maintain": 90, "cost": 80, "compliance": 92 }
|
|
91
|
-
}
|
|
92
|
-
},
|
|
93
|
-
"nodejs": {
|
|
94
|
-
"id": "nodejs",
|
|
95
|
-
"name": "Node.js",
|
|
96
|
-
"category": "backend",
|
|
97
|
-
"url": "https://nodejs.org",
|
|
98
|
-
"scores": {
|
|
99
|
-
"default": { "perf": 75, "dx": 85, "ecosystem": 98, "maintain": 80, "cost": 90, "compliance": 88 },
|
|
100
|
-
"mvp": { "perf": 70, "dx": 85, "ecosystem": 98, "maintain": 78, "cost": 95, "compliance": 85 },
|
|
101
|
-
"enterprise": { "perf": 78, "dx": 85, "ecosystem": 98, "maintain": 82, "cost": 85, "compliance": 90 }
|
|
102
|
-
}
|
|
103
|
-
},
|
|
104
|
-
"bun": {
|
|
105
|
-
"id": "bun",
|
|
106
|
-
"name": "Bun",
|
|
107
|
-
"category": "backend",
|
|
108
|
-
"url": "https://bun.sh",
|
|
109
|
-
"scores": {
|
|
110
|
-
"default": { "perf": 98, "dx": 92, "ecosystem": 60, "maintain": 75, "cost": 95, "compliance": 80 },
|
|
111
|
-
"mvp": { "perf": 98, "dx": 95, "ecosystem": 55, "maintain": 72, "cost": 98, "compliance": 78 },
|
|
112
|
-
"enterprise": { "perf": 98, "dx": 88, "ecosystem": 58, "maintain": 70, "cost": 90, "compliance": 75 }
|
|
113
|
-
}
|
|
114
|
-
},
|
|
115
|
-
"postgres": {
|
|
116
|
-
"id": "postgres",
|
|
117
|
-
"name": "PostgreSQL",
|
|
118
|
-
"category": "database",
|
|
119
|
-
"url": "https://www.postgresql.org",
|
|
120
|
-
"scores": {
|
|
121
|
-
"default": { "perf": 88, "dx": 80, "ecosystem": 95, "maintain": 90, "cost": 85, "compliance": 98 },
|
|
122
|
-
"mvp": { "perf": 85, "dx": 75, "ecosystem": 95, "maintain": 88, "cost": 90, "compliance": 98 },
|
|
123
|
-
"enterprise": { "perf": 92, "dx": 82, "ecosystem": 98, "maintain": 92, "cost": 80, "compliance": 98 }
|
|
124
|
-
}
|
|
125
|
-
},
|
|
126
|
-
"sqlite": {
|
|
127
|
-
"id": "sqlite",
|
|
128
|
-
"name": "SQLite",
|
|
129
|
-
"category": "database",
|
|
130
|
-
"url": "https://www.sqlite.org",
|
|
131
|
-
"scores": {
|
|
132
|
-
"default": { "perf": 95, "dx": 90, "ecosystem": 70, "maintain": 95, "cost": 100, "compliance": 85 },
|
|
133
|
-
"mvp": { "perf": 98, "dx": 95, "ecosystem": 70, "maintain": 95, "cost": 100, "compliance": 82 },
|
|
134
|
-
"enterprise": { "perf": 70, "dx": 80, "ecosystem": 65, "maintain": 85, "cost": 98, "compliance": 80 }
|
|
135
|
-
}
|
|
136
|
-
},
|
|
137
|
-
"supabase": {
|
|
138
|
-
"id": "supabase",
|
|
139
|
-
"name": "Supabase",
|
|
140
|
-
"category": "database",
|
|
141
|
-
"url": "https://supabase.com",
|
|
142
|
-
"scores": {
|
|
143
|
-
"default": { "perf": 82, "dx": 95, "ecosystem": 75, "maintain": 85, "cost": 70, "compliance": 88 },
|
|
144
|
-
"mvp": { "perf": 80, "dx": 98, "ecosystem": 75, "maintain": 88, "cost": 85, "compliance": 88 },
|
|
145
|
-
"enterprise": { "perf": 82, "dx": 92, "ecosystem": 78, "maintain": 82, "cost": 60, "compliance": 90 }
|
|
146
|
-
}
|
|
147
|
-
},
|
|
148
|
-
"drizzle": {
|
|
149
|
-
"id": "drizzle",
|
|
150
|
-
"name": "Drizzle ORM",
|
|
151
|
-
"category": "orm",
|
|
152
|
-
"url": "https://orm.drizzle.team",
|
|
153
|
-
"scores": {
|
|
154
|
-
"default": { "perf": 95, "dx": 92, "ecosystem": 70, "maintain": 90, "cost": 95, "compliance": 88 },
|
|
155
|
-
"mvp": { "perf": 95, "dx": 95, "ecosystem": 65, "maintain": 90, "cost": 98, "compliance": 88 },
|
|
156
|
-
"enterprise": { "perf": 95, "dx": 88, "ecosystem": 72, "maintain": 88, "cost": 92, "compliance": 88 }
|
|
157
|
-
}
|
|
158
|
-
},
|
|
159
|
-
"prisma": {
|
|
160
|
-
"id": "prisma",
|
|
161
|
-
"name": "Prisma",
|
|
162
|
-
"category": "orm",
|
|
163
|
-
"url": "https://www.prisma.io",
|
|
164
|
-
"scores": {
|
|
165
|
-
"default": { "perf": 75, "dx": 95, "ecosystem": 88, "maintain": 88, "cost": 85, "compliance": 90 },
|
|
166
|
-
"mvp": { "perf": 72, "dx": 98, "ecosystem": 88, "maintain": 90, "cost": 88, "compliance": 88 },
|
|
167
|
-
"enterprise": { "perf": 70, "dx": 92, "ecosystem": 90, "maintain": 88, "cost": 75, "compliance": 92 }
|
|
168
|
-
}
|
|
169
|
-
},
|
|
170
|
-
"better-auth": {
|
|
171
|
-
"id": "better-auth",
|
|
172
|
-
"name": "Better Auth",
|
|
173
|
-
"category": "auth",
|
|
174
|
-
"url": "https://better-auth.com",
|
|
175
|
-
"scores": {
|
|
176
|
-
"default": { "perf": 90, "dx": 92, "ecosystem": 55, "maintain": 88, "cost": 98, "compliance": 85 },
|
|
177
|
-
"mvp": { "perf": 90, "dx": 95, "ecosystem": 50, "maintain": 88, "cost": 100, "compliance": 82 },
|
|
178
|
-
"enterprise": { "perf": 88, "dx": 88, "ecosystem": 55, "maintain": 85, "cost": 95, "compliance": 85 }
|
|
179
|
-
}
|
|
180
|
-
},
|
|
181
|
-
"clerk": {
|
|
182
|
-
"id": "clerk",
|
|
183
|
-
"name": "Clerk",
|
|
184
|
-
"category": "auth",
|
|
185
|
-
"url": "https://clerk.com",
|
|
186
|
-
"scores": {
|
|
187
|
-
"default": { "perf": 85, "dx": 98, "ecosystem": 75, "maintain": 90, "cost": 60, "compliance": 92 },
|
|
188
|
-
"mvp": { "perf": 85, "dx": 98, "ecosystem": 75, "maintain": 92, "cost": 70, "compliance": 90 },
|
|
189
|
-
"enterprise": { "perf": 85, "dx": 95, "ecosystem": 78, "maintain": 90, "cost": 50, "compliance": 95 }
|
|
190
|
-
}
|
|
191
|
-
},
|
|
192
|
-
"vercel": {
|
|
193
|
-
"id": "vercel",
|
|
194
|
-
"name": "Vercel",
|
|
195
|
-
"category": "hosting",
|
|
196
|
-
"url": "https://vercel.com",
|
|
197
|
-
"scores": {
|
|
198
|
-
"default": { "perf": 92, "dx": 98, "ecosystem": 85, "maintain": 95, "cost": 60, "compliance": 88 },
|
|
199
|
-
"mvp": { "perf": 92, "dx": 100, "ecosystem": 85, "maintain": 95, "cost": 75, "compliance": 85 },
|
|
200
|
-
"enterprise": { "perf": 92, "dx": 95, "ecosystem": 88, "maintain": 95, "cost": 45, "compliance": 90 }
|
|
201
|
-
}
|
|
202
|
-
},
|
|
203
|
-
"cloudflare": {
|
|
204
|
-
"id": "cloudflare",
|
|
205
|
-
"name": "Cloudflare Pages",
|
|
206
|
-
"category": "hosting",
|
|
207
|
-
"url": "https://pages.cloudflare.com",
|
|
208
|
-
"scores": {
|
|
209
|
-
"default": { "perf": 98, "dx": 88, "ecosystem": 70, "maintain": 90, "cost": 85, "compliance": 92 },
|
|
210
|
-
"mvp": { "perf": 98, "dx": 85, "ecosystem": 68, "maintain": 88, "cost": 95, "compliance": 90 },
|
|
211
|
-
"enterprise": { "perf": 98, "dx": 85, "ecosystem": 75, "maintain": 92, "cost": 80, "compliance": 95 }
|
|
212
|
-
}
|
|
213
|
-
},
|
|
214
|
-
"railway": {
|
|
215
|
-
"id": "railway",
|
|
216
|
-
"name": "Railway",
|
|
217
|
-
"category": "hosting",
|
|
218
|
-
"url": "https://railway.app",
|
|
219
|
-
"scores": {
|
|
220
|
-
"default": { "perf": 85, "dx": 95, "ecosystem": 65, "maintain": 88, "cost": 75, "compliance": 85 },
|
|
221
|
-
"mvp": { "perf": 85, "dx": 98, "ecosystem": 62, "maintain": 90, "cost": 85, "compliance": 82 },
|
|
222
|
-
"enterprise": { "perf": 82, "dx": 92, "ecosystem": 68, "maintain": 85, "cost": 65, "compliance": 85 }
|
|
223
|
-
}
|
|
224
|
-
}
|
|
225
|
-
}
|
|
226
|
-
}
|
package/dist/http.d.ts
DELETED
package/dist/http.d.ts.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"http.d.ts","sourceRoot":"","sources":["../src/http.ts"],"names":[],"mappings":";AAEA;;;GAGG"}
|
package/dist/http.js
DELETED
|
@@ -1,69 +0,0 @@
|
|
|
1
|
-
#!/usr/bin/env node
|
|
2
|
-
/**
|
|
3
|
-
* HTTP entry point for Smithery hosted deployments.
|
|
4
|
-
* Uses StreamableHTTPServerTransport instead of stdio.
|
|
5
|
-
*/
|
|
6
|
-
import express from 'express';
|
|
7
|
-
import { StreamableHTTPServerTransport } from '@modelcontextprotocol/sdk/server/streamableHttp.js';
|
|
8
|
-
import { createServer } from './server.js';
|
|
9
|
-
import { loadConfig } from './utils/config.js';
|
|
10
|
-
import { setDebug, info, error } from './utils/logger.js';
|
|
11
|
-
async function main() {
|
|
12
|
-
// Load configuration
|
|
13
|
-
const config = loadConfig();
|
|
14
|
-
// Enable debug logging if configured
|
|
15
|
-
if (config.debug) {
|
|
16
|
-
setDebug(true);
|
|
17
|
-
info('Debug logging enabled');
|
|
18
|
-
}
|
|
19
|
-
// Create Express app
|
|
20
|
-
const app = express();
|
|
21
|
-
app.use(express.json());
|
|
22
|
-
// Health check endpoint
|
|
23
|
-
app.get('/health', (_req, res) => {
|
|
24
|
-
res.json({ status: 'ok', version: '1.0.0' });
|
|
25
|
-
});
|
|
26
|
-
// MCP endpoint - creates a new server instance per request
|
|
27
|
-
app.post('/mcp', async (req, res) => {
|
|
28
|
-
try {
|
|
29
|
-
// Create fresh server and transport per request
|
|
30
|
-
const server = createServer();
|
|
31
|
-
const transport = new StreamableHTTPServerTransport({
|
|
32
|
-
sessionIdGenerator: undefined,
|
|
33
|
-
enableJsonResponse: true
|
|
34
|
-
});
|
|
35
|
-
// Clean up on connection close
|
|
36
|
-
res.on('close', () => {
|
|
37
|
-
transport.close();
|
|
38
|
-
server.close();
|
|
39
|
-
});
|
|
40
|
-
// Connect and handle request
|
|
41
|
-
await server.connect(transport);
|
|
42
|
-
await transport.handleRequest(req, res, req.body);
|
|
43
|
-
}
|
|
44
|
-
catch (err) {
|
|
45
|
-
error('Error handling MCP request', err);
|
|
46
|
-
if (!res.headersSent) {
|
|
47
|
-
res.status(500).json({
|
|
48
|
-
jsonrpc: '2.0',
|
|
49
|
-
error: {
|
|
50
|
-
code: -32603,
|
|
51
|
-
message: 'Internal server error'
|
|
52
|
-
},
|
|
53
|
-
id: null
|
|
54
|
-
});
|
|
55
|
-
}
|
|
56
|
-
}
|
|
57
|
-
});
|
|
58
|
-
// Start server
|
|
59
|
-
const port = parseInt(process.env.PORT || '3000', 10);
|
|
60
|
-
app.listen(port, '0.0.0.0', () => {
|
|
61
|
-
info(`StacksFinder MCP HTTP Server running on port ${port}`);
|
|
62
|
-
info('POST /mcp for MCP requests, GET /health for health checks');
|
|
63
|
-
});
|
|
64
|
-
}
|
|
65
|
-
main().catch((err) => {
|
|
66
|
-
console.error('Fatal error:', err);
|
|
67
|
-
process.exit(1);
|
|
68
|
-
});
|
|
69
|
-
//# sourceMappingURL=http.js.map
|
package/dist/http.js.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"http.js","sourceRoot":"","sources":["../src/http.ts"],"names":[],"mappings":"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"}
|
|
@@ -1,33 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* @stacksfinder/mcp-compatibility
|
|
3
|
-
*
|
|
4
|
-
* MCP compatibility matrix - detect conflicts, redundancies, and synergies between MCP servers.
|
|
5
|
-
*
|
|
6
|
-
* @example
|
|
7
|
-
* ```typescript
|
|
8
|
-
* import {
|
|
9
|
-
* generateReport,
|
|
10
|
-
* formatReportAsMarkdown,
|
|
11
|
-
* initRulesIndex,
|
|
12
|
-
* getAllRules,
|
|
13
|
-
* } from '@stacksfinder/mcp-compatibility';
|
|
14
|
-
*
|
|
15
|
-
* // Initialize the rules index
|
|
16
|
-
* initRulesIndex(getAllRules());
|
|
17
|
-
*
|
|
18
|
-
* // Generate a report
|
|
19
|
-
* const report = generateReport(
|
|
20
|
-
* ['supabase-mcp', 'neon-mcp', 'prisma-mcp'],
|
|
21
|
-
* getAllRules()
|
|
22
|
-
* );
|
|
23
|
-
*
|
|
24
|
-
* // Format as markdown
|
|
25
|
-
* const markdown = formatReportAsMarkdown(report);
|
|
26
|
-
* ```
|
|
27
|
-
*/
|
|
28
|
-
export type { MCPCategory, CompatibilityStatus, Severity, CompatibilityRule, MatchedRule, Suggestion, Grade, CompatibilitySummary, CompatibilityReport, CompatibilityToolOutput, RecommendationConflict, ExcludedRecommendation, AnalyzeRepoCompatibility, } from './types.js';
|
|
29
|
-
export { MCP_CATEGORIES } from './types.js';
|
|
30
|
-
export { MCP_ALIASES, canonicalizeMcpId, pairKey, initRulesIndex, getRulesIndex, findRule, generatePairs, checkAllPairs, getSuggestions, } from './utils.js';
|
|
31
|
-
export { COMPATIBILITY_RULES, getAllRules, getRulesByCategory, getRulesByStatus, CURATED_MCPS, } from './rules.js';
|
|
32
|
-
export { calculateHealthScore, getGrade, generateReport, formatReportAsMarkdown, getReportSummaryLine, } from './scoring.js';
|
|
33
|
-
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/lib/mcp-compatibility/index.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;;;;;;GA0BG;AAGH,YAAY,EACV,WAAW,EACX,mBAAmB,EACnB,QAAQ,EACR,iBAAiB,EACjB,WAAW,EACX,UAAU,EACV,KAAK,EACL,oBAAoB,EACpB,mBAAmB,EACnB,uBAAuB,EACvB,sBAAsB,EACtB,sBAAsB,EACtB,wBAAwB,GACzB,MAAM,YAAY,CAAC;AAEpB,OAAO,EAAE,cAAc,EAAE,MAAM,YAAY,CAAC;AAG5C,OAAO,EACL,WAAW,EACX,iBAAiB,EACjB,OAAO,EACP,cAAc,EACd,aAAa,EACb,QAAQ,EACR,aAAa,EACb,aAAa,EACb,cAAc,GACf,MAAM,YAAY,CAAC;AAGpB,OAAO,EACL,mBAAmB,EACnB,WAAW,EACX,kBAAkB,EAClB,gBAAgB,EAChB,YAAY,GACb,MAAM,YAAY,CAAC;AAGpB,OAAO,EACL,oBAAoB,EACpB,QAAQ,EACR,cAAc,EACd,sBAAsB,EACtB,oBAAoB,GACrB,MAAM,cAAc,CAAC"}
|