@mrfentmen/bundlephobia-mcp 1.0.0 → 1.0.2
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/README.md +19 -0
- package/dist/api.js +96 -0
- package/dist/license.js +79 -0
- package/dist/server.js +38 -1
- package/package.json +1 -1
- package/server.json +2 -2
package/README.md
CHANGED
|
@@ -18,3 +18,22 @@ node dist/index.js
|
|
|
18
18
|
```
|
|
19
19
|
|
|
20
20
|
Data comes from the public Bundlephobia API.
|
|
21
|
+
|
|
22
|
+
<!-- paywall -->
|
|
23
|
+
## Premium tools
|
|
24
|
+
|
|
25
|
+
These tools need a license key:
|
|
26
|
+
|
|
27
|
+
* `package_comparison`
|
|
28
|
+
* `package_metadata`
|
|
29
|
+
|
|
30
|
+
Buy a key at https://mcp-marketplace.io/server/io-github-mrfentmen-bundlephobia-mcp and set it in your MCP client config:
|
|
31
|
+
|
|
32
|
+
```json
|
|
33
|
+
"env": { "MCP_LICENSE_KEY": "mcp_live_..." }
|
|
34
|
+
```
|
|
35
|
+
|
|
36
|
+
The key is checked against MCP Marketplace, cached for 24 hours, and keeps
|
|
37
|
+
working offline once one check has succeeded. Every other tool on this server
|
|
38
|
+
stays free.
|
|
39
|
+
<!-- /paywall -->
|
package/dist/api.js
CHANGED
|
@@ -28,3 +28,99 @@ export async function size(args) {
|
|
|
28
28
|
`Dependencies: ${s('dependencyCount')} | Has side effects: ${s('hasJSModule') ? 'module' : s('hasJSNext') ? 'next' : 'no'}`,
|
|
29
29
|
].filter(Boolean).join('\n');
|
|
30
30
|
}
|
|
31
|
+
// ---- muxA tools:
|
|
32
|
+
function fmtBytes(n) {
|
|
33
|
+
const v = Number(n);
|
|
34
|
+
if (!Number.isFinite(v) || v <= 0)
|
|
35
|
+
return 'n/a';
|
|
36
|
+
if (v >= 1024 * 1024)
|
|
37
|
+
return `${(v / 1024 / 1024).toFixed(2)} MB`;
|
|
38
|
+
if (v >= 1024)
|
|
39
|
+
return `${(v / 1024).toFixed(1)} KB`;
|
|
40
|
+
return `${v} B`;
|
|
41
|
+
}
|
|
42
|
+
function clean(value) {
|
|
43
|
+
return value != null ? String(value) : '';
|
|
44
|
+
}
|
|
45
|
+
async function sizeOf(name) {
|
|
46
|
+
const res = await fetch(`${BASE}?package=${encodeURIComponent(name)}`, {
|
|
47
|
+
headers: { 'User-Agent': 'mrfentmen-bundlephobia-mcp/1.0', Accept: 'application/json' },
|
|
48
|
+
// bundlephobia builds each package on demand and is slow on a cold package
|
|
49
|
+
signal: AbortSignal.timeout(45000),
|
|
50
|
+
});
|
|
51
|
+
if (res.status === 404)
|
|
52
|
+
throw new Error(`Bundlephobia has no package named ${name}`);
|
|
53
|
+
if (!res.ok)
|
|
54
|
+
throw new Error(`Bundlephobia returned ${res.status} for ${name}`);
|
|
55
|
+
return (await res.json());
|
|
56
|
+
}
|
|
57
|
+
export async function packageComparison(args) {
|
|
58
|
+
const raw = (args.packages ?? '').trim();
|
|
59
|
+
if (!raw)
|
|
60
|
+
return 'Provide two or more packages, comma separated, e.g. "react@18.3.1,lodash@4.17.21".';
|
|
61
|
+
const names = raw
|
|
62
|
+
.split(',')
|
|
63
|
+
.map((n) => n.trim())
|
|
64
|
+
.filter(Boolean)
|
|
65
|
+
.slice(0, 10);
|
|
66
|
+
if (names.length < 2)
|
|
67
|
+
return 'Give at least two packages to compare.';
|
|
68
|
+
const rows = [];
|
|
69
|
+
for (const name of names) {
|
|
70
|
+
try {
|
|
71
|
+
rows.push({ asked: name, data: await sizeOf(name) });
|
|
72
|
+
}
|
|
73
|
+
catch (e) {
|
|
74
|
+
rows.push({ asked: name, data: null, error: e instanceof Error ? e.message : String(e) });
|
|
75
|
+
}
|
|
76
|
+
}
|
|
77
|
+
const good = rows.filter((r) => r.data);
|
|
78
|
+
if (!good.length)
|
|
79
|
+
return `Bundlephobia returned nothing usable for ${names.join(', ')}.`;
|
|
80
|
+
const ranked = good
|
|
81
|
+
.map((r) => ({ asked: r.asked, data: r.data }))
|
|
82
|
+
.sort((a, b) => (Number(b.data.gzip) || 0) - (Number(a.data.gzip) || 0));
|
|
83
|
+
const biggest = Number(ranked[0].data.gzip) || 0;
|
|
84
|
+
const lines = [
|
|
85
|
+
`Bundle comparison across ${names.length} package(s), largest gzipped first:`,
|
|
86
|
+
...ranked.map((r, i) => {
|
|
87
|
+
const d = r.data;
|
|
88
|
+
const gzip = Number(d.gzip) || 0;
|
|
89
|
+
const ratio = biggest ? ((gzip / biggest) * 100).toFixed(0) : '?';
|
|
90
|
+
return `${i + 1}. ${clean(d.name)}@${clean(d.version)} | gzip ${fmtBytes(d.gzip)} (${ratio}% of the largest)` +
|
|
91
|
+
` | minified ${fmtBytes(d.size)} | ${clean(d.dependencyCount)} dependencies`;
|
|
92
|
+
}),
|
|
93
|
+
];
|
|
94
|
+
const failed = rows.filter((r) => !r.data);
|
|
95
|
+
if (failed.length) {
|
|
96
|
+
lines.push(`Could not measure: ${failed.map((r) => `${r.asked} (${r.error})`).join('; ')}`);
|
|
97
|
+
}
|
|
98
|
+
return lines.join('\n');
|
|
99
|
+
}
|
|
100
|
+
export async function packageMetadata(args) {
|
|
101
|
+
const name = (args.name ?? '').trim();
|
|
102
|
+
if (!name)
|
|
103
|
+
return 'Provide a package name.';
|
|
104
|
+
const d = await sizeOf(name);
|
|
105
|
+
const assets = (d.assets ?? []);
|
|
106
|
+
const lines = [
|
|
107
|
+
`${clean(d.name)}${d.scoped ? ' (scoped)' : ''}@${clean(d.version)}`,
|
|
108
|
+
clean(d.description) ? `Description: ${clean(d.description).slice(0, 300)}` : 'Description: not reported',
|
|
109
|
+
`Repository: ${clean(d.repository) || 'not reported'}`,
|
|
110
|
+
`Module type: ${d.isModuleType ? 'ESM' : 'CommonJS'}`,
|
|
111
|
+
`Side effects: ${typeof d.hasSideEffects === 'boolean' ? (d.hasSideEffects ? 'yes, importing it can run code' : 'no, safe to tree shake') : 'not reported'}`,
|
|
112
|
+
`Tree shaking: ${d.hasJSNext ? 'has a Next.js specific build' : d.hasJSModule ? 'has a JS module build' : 'not reported'}`,
|
|
113
|
+
`Dependencies: ${clean(d.dependencyCount)} (Bundlephobia counts the package's own dependency graph)`,
|
|
114
|
+
`Total size: ${fmtBytes(d.size)} minified, ${fmtBytes(d.gzip)} gzipped`,
|
|
115
|
+
];
|
|
116
|
+
if (assets.length) {
|
|
117
|
+
lines.push(`Assets (${assets.length}):`);
|
|
118
|
+
for (const a of assets) {
|
|
119
|
+
lines.push(` ${clean(a.name) || 'unnamed'} [${clean(a.type) || 'type not reported'}] ${fmtBytes(a.size)} minified, ${fmtBytes(a.gzip)} gzipped`);
|
|
120
|
+
}
|
|
121
|
+
}
|
|
122
|
+
else {
|
|
123
|
+
lines.push('Assets: Bundlephobia returned none for this package.');
|
|
124
|
+
}
|
|
125
|
+
return lines.join('\n');
|
|
126
|
+
}
|
package/dist/license.js
ADDED
|
@@ -0,0 +1,79 @@
|
|
|
1
|
+
// Premium tools on this server need a license key bought from MCP Marketplace.
|
|
2
|
+
// Buyers put the key in their MCP client config as MCP_LICENSE_KEY. Every tool
|
|
3
|
+
// that is not listed in PREMIUM keeps working without a key.
|
|
4
|
+
const SLUG = "bundlephobia-mcp";
|
|
5
|
+
// Tools that need a key. Everything else is free.
|
|
6
|
+
const PREMIUM = new Set([
|
|
7
|
+
"package_comparison",
|
|
8
|
+
"package_metadata",
|
|
9
|
+
]);
|
|
10
|
+
const BUY_URL = `https://mcp-marketplace.io/server/io-github-mrfentmen-${SLUG}`;
|
|
11
|
+
// The license check calls the marketplace's verify endpoint directly instead of
|
|
12
|
+
// using @mcp_marketplace/license. That SDK sends no `apikey` header, so every
|
|
13
|
+
// check it makes is rejected by Supabase before it reaches the function. The
|
|
14
|
+
// publishable key below is public by design - it ships in mcp-marketplace.io's
|
|
15
|
+
// own JavaScript and only ever reaches their licence check.
|
|
16
|
+
const DEFAULT_VERIFY_URL = "https://virupvwhtkpkjsiskckg.supabase.co/functions/v1/verify-key";
|
|
17
|
+
const PUBLISHABLE_KEY = "sb_publishable_BuqlW96Ke8C_zzJG-LQv1Q_YHi_r_4h";
|
|
18
|
+
const OK_CACHE_MS = 60 * 60 * 1000;
|
|
19
|
+
const BAD_CACHE_MS = 60 * 1000;
|
|
20
|
+
const seen = new Map();
|
|
21
|
+
const REASONS = {
|
|
22
|
+
missing_key: "no key is set",
|
|
23
|
+
invalid_format: "that key is not a valid MCP Marketplace key",
|
|
24
|
+
not_found: "that key was not found",
|
|
25
|
+
revoked: "that key has been revoked",
|
|
26
|
+
rotated: "that key was rotated, use your new one",
|
|
27
|
+
expired: "that key has expired, renew it",
|
|
28
|
+
rate_limited: "there were too many checks just now, try again shortly",
|
|
29
|
+
network_error: "the license server could not be reached",
|
|
30
|
+
};
|
|
31
|
+
function blocked(tool, reason) {
|
|
32
|
+
const why = REASONS[reason] ?? `the license server answered "${reason}"`;
|
|
33
|
+
return `"${tool}" needs a license key, but ${why}. ` +
|
|
34
|
+
`Set MCP_LICENSE_KEY in your MCP client config. Get a key: ${BUY_URL}`;
|
|
35
|
+
}
|
|
36
|
+
async function verify(key) {
|
|
37
|
+
const res = await fetch(process.env.MCP_LICENSE_VERIFY_URL || DEFAULT_VERIFY_URL, {
|
|
38
|
+
method: "POST",
|
|
39
|
+
headers: {
|
|
40
|
+
apikey: PUBLISHABLE_KEY,
|
|
41
|
+
Authorization: `Bearer ${PUBLISHABLE_KEY}`,
|
|
42
|
+
"Content-Type": "application/json",
|
|
43
|
+
},
|
|
44
|
+
body: JSON.stringify({ key, slug: SLUG }),
|
|
45
|
+
// an unusable key answers 400 with a JSON body, so read the body either way
|
|
46
|
+
signal: AbortSignal.timeout(15000),
|
|
47
|
+
});
|
|
48
|
+
const data = (await res.json());
|
|
49
|
+
if (typeof data?.valid !== "boolean")
|
|
50
|
+
return { valid: false, reason: "unexpected_response" };
|
|
51
|
+
return data;
|
|
52
|
+
}
|
|
53
|
+
/**
|
|
54
|
+
* Returns null when the caller may run the tool, or a short message telling
|
|
55
|
+
* them how to get a key.
|
|
56
|
+
*
|
|
57
|
+
* A good key is remembered for an hour, so a busy session does not hit the
|
|
58
|
+
* license server on every call and keeps working through a brief outage.
|
|
59
|
+
*/
|
|
60
|
+
export async function premiumRequired(tool) {
|
|
61
|
+
if (!PREMIUM.has(tool))
|
|
62
|
+
return null;
|
|
63
|
+
const key = process.env.MCP_LICENSE_KEY;
|
|
64
|
+
if (!key)
|
|
65
|
+
return blocked(tool, "missing_key");
|
|
66
|
+
const hit = seen.get(key);
|
|
67
|
+
if (hit && Date.now() - hit.at < (hit.valid ? OK_CACHE_MS : BAD_CACHE_MS)) {
|
|
68
|
+
return hit.valid ? null : blocked(tool, hit.reason ?? "invalid");
|
|
69
|
+
}
|
|
70
|
+
let result;
|
|
71
|
+
try {
|
|
72
|
+
result = await verify(key);
|
|
73
|
+
}
|
|
74
|
+
catch {
|
|
75
|
+
result = { valid: false, reason: "network_error" };
|
|
76
|
+
}
|
|
77
|
+
seen.set(key, { ...result, at: Date.now() });
|
|
78
|
+
return result.valid ? null : blocked(tool, result.reason ?? "invalid");
|
|
79
|
+
}
|
package/dist/server.js
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { McpServer } from "@modelcontextprotocol/sdk/server/mcp.js";
|
|
2
2
|
import { z } from "zod";
|
|
3
|
-
import { size } from "./api.js";
|
|
3
|
+
import { size, packageComparison, packageMetadata } from "./api.js";
|
|
4
|
+
import { premiumRequired } from "./license.js";
|
|
4
5
|
const text = (value) => ({ content: [{ type: "text", text: value }] });
|
|
5
6
|
const textError = (t) => ({ content: [{ type: "text", text: t }], isError: true });
|
|
6
7
|
const READ_ONLY = { readOnlyHint: true, openWorldHint: true };
|
|
@@ -20,5 +21,41 @@ export function createServer() {
|
|
|
20
21
|
return textError(error(e));
|
|
21
22
|
}
|
|
22
23
|
});
|
|
24
|
+
server.registerTool("package_comparison", {
|
|
25
|
+
title: "Package comparison",
|
|
26
|
+
description: "Measure several npm packages side by side and rank them by gzipped size.",
|
|
27
|
+
inputSchema: z.object({ packages: z.string().describe("Comma separated packages, e.g. react@18.3.1,lodash@4.17.21.") }),
|
|
28
|
+
annotations: READ_ONLY,
|
|
29
|
+
}, async (args) => {
|
|
30
|
+
// ---- paywall: package_comparison ----
|
|
31
|
+
const paywallMessage = await premiumRequired("package_comparison");
|
|
32
|
+
if (paywallMessage)
|
|
33
|
+
return { content: [{ type: "text", text: paywallMessage }], isError: true };
|
|
34
|
+
// ---- paywall: end ----
|
|
35
|
+
try {
|
|
36
|
+
return text(await packageComparison(args));
|
|
37
|
+
}
|
|
38
|
+
catch (e) {
|
|
39
|
+
return textError(error(e));
|
|
40
|
+
}
|
|
41
|
+
});
|
|
42
|
+
server.registerTool("package_metadata", {
|
|
43
|
+
title: "Package metadata",
|
|
44
|
+
description: "Description, repository, module type, side effects and the per-asset size breakdown of one package.",
|
|
45
|
+
inputSchema: z.object({ name: z.string().describe("Package name, optionally with a version.") }),
|
|
46
|
+
annotations: READ_ONLY,
|
|
47
|
+
}, async (args) => {
|
|
48
|
+
// ---- paywall: package_metadata ----
|
|
49
|
+
const paywallMessage = await premiumRequired("package_metadata");
|
|
50
|
+
if (paywallMessage)
|
|
51
|
+
return { content: [{ type: "text", text: paywallMessage }], isError: true };
|
|
52
|
+
// ---- paywall: end ----
|
|
53
|
+
try {
|
|
54
|
+
return text(await packageMetadata(args));
|
|
55
|
+
}
|
|
56
|
+
catch (e) {
|
|
57
|
+
return textError(error(e));
|
|
58
|
+
}
|
|
59
|
+
});
|
|
23
60
|
return server;
|
|
24
61
|
}
|
package/package.json
CHANGED
package/server.json
CHANGED
|
@@ -6,12 +6,12 @@
|
|
|
6
6
|
"url": "https://github.com/mrfentmen/bundlephobia-mcp",
|
|
7
7
|
"source": "github"
|
|
8
8
|
},
|
|
9
|
-
"version": "1.0.
|
|
9
|
+
"version": "1.0.1",
|
|
10
10
|
"packages": [
|
|
11
11
|
{
|
|
12
12
|
"registryType": "npm",
|
|
13
13
|
"identifier": "@mrfentmen/bundlephobia-mcp",
|
|
14
|
-
"version": "1.0.
|
|
14
|
+
"version": "1.0.1",
|
|
15
15
|
"transport": {
|
|
16
16
|
"type": "stdio"
|
|
17
17
|
}
|