@mrfentmen/bundlephobia-mcp 1.0.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/README.md ADDED
@@ -0,0 +1,20 @@
1
+ # Bundlephobia MCP
2
+
3
+ npm bundle sizes from the public Bundlephobia API. No key required.
4
+
5
+ This file is self contained. It reads public data only and never writes to the machine. All output is bounded and honest about what could not be fetched.
6
+
7
+ ## Tools
8
+
9
+
10
+ * `size` Bundle size.
11
+
12
+ ## Usage
13
+
14
+ ```bash
15
+ npm install
16
+ npm run build
17
+ node dist/index.js
18
+ ```
19
+
20
+ Data comes from the public Bundlephobia API.
package/dist/api.js ADDED
@@ -0,0 +1,30 @@
1
+ const BASE = 'https://bundlephobia.com/api/size';
2
+ export async function size(args) {
3
+ const name = (args.name ?? '').trim();
4
+ if (!name)
5
+ return 'Provide a package name.';
6
+ const res = await fetch(`${BASE}?package=${encodeURIComponent(name)}`, {
7
+ headers: { 'User-Agent': 'mrfentmen-bundlephobia-mcp/1.0', Accept: 'application/json' },
8
+ signal: AbortSignal.timeout(20000),
9
+ });
10
+ if (!res.ok)
11
+ throw new Error(`Bundlephobia returned ${res.status}`);
12
+ const d = (await res.json());
13
+ const s = (k) => (d[k] != null ? String(d[k]) : '');
14
+ const fmt = (n) => {
15
+ const v = Number(n);
16
+ if (!v)
17
+ return 'n/a';
18
+ if (v >= 1024 * 1024)
19
+ return `${(v / 1024 / 1024).toFixed(2)} MB`;
20
+ return `${(v / 1024).toFixed(1)} KB`;
21
+ };
22
+ const assets = (d.assets ?? []);
23
+ const jsAssets = assets.filter((a) => String(a.type ?? '') === 'js');
24
+ const main = jsAssets[0] ?? assets[0] ?? {};
25
+ return [
26
+ `${s('name')}@${s('version')}`,
27
+ `Minified: ${fmt(main.size ?? d.size)} | Gzip: ${fmt(main.gzip ?? d.gzip)}`,
28
+ `Dependencies: ${s('dependencyCount')} | Has side effects: ${s('hasJSModule') ? 'module' : s('hasJSNext') ? 'next' : 'no'}`,
29
+ ].filter(Boolean).join('\n');
30
+ }
package/dist/index.js ADDED
@@ -0,0 +1,4 @@
1
+ import { StdioServerTransport } from "@modelcontextprotocol/sdk/server/stdio.js";
2
+ import { createServer } from "./server.js";
3
+ const main = async () => { const server = createServer(); await server.connect(new StdioServerTransport()); };
4
+ main().catch((error) => { console.error("Fatal error:", error); process.exit(1); });
package/dist/server.js ADDED
@@ -0,0 +1,24 @@
1
+ import { McpServer } from "@modelcontextprotocol/sdk/server/mcp.js";
2
+ import { z } from "zod";
3
+ import { size } from "./api.js";
4
+ const text = (value) => ({ content: [{ type: "text", text: value }] });
5
+ const textError = (t) => ({ content: [{ type: "text", text: t }], isError: true });
6
+ const READ_ONLY = { readOnlyHint: true, openWorldHint: true };
7
+ const error = (e) => `Error: ${e instanceof Error ? e.message : String(e)}`;
8
+ export function createServer() {
9
+ const server = new McpServer({ name: "bundlephobia-mcp", version: "1.0.0" });
10
+ server.registerTool("size", {
11
+ title: "Size",
12
+ description: "Bundle size for a package.",
13
+ inputSchema: z.object({ name: z.string().describe("Package name.") }),
14
+ annotations: READ_ONLY,
15
+ }, async (args) => {
16
+ try {
17
+ return text(await size(args));
18
+ }
19
+ catch (e) {
20
+ return textError(error(e));
21
+ }
22
+ });
23
+ return server;
24
+ }
package/package.json ADDED
@@ -0,0 +1,44 @@
1
+ {
2
+ "version": "1.0.0",
3
+ "type": "module",
4
+ "repository": {
5
+ "type": "git",
6
+ "url": "https://github.com/mrfentmen/bundlephobia-mcp.git"
7
+ },
8
+ "bin": {
9
+ "bundlephobia-mcp": "./dist/index.js"
10
+ },
11
+ "main": "./dist/index.js",
12
+ "files": [
13
+ "dist",
14
+ "server.json",
15
+ "README.md"
16
+ ],
17
+ "scripts": {
18
+ "build": "tsc -p tsconfig.json",
19
+ "start": "node dist/index.js",
20
+ "dev": "npm run build && node dist/index.js"
21
+ },
22
+ "license": "MIT",
23
+ "dependencies": {
24
+ "@modelcontextprotocol/sdk": "^1.0.4",
25
+ "zod": "^3.23.8"
26
+ },
27
+ "devDependencies": {
28
+ "@types/node": "^22.0.0",
29
+ "typescript": "^5.6.0"
30
+ },
31
+ "name": "@mrfentmen/bundlephobia-mcp",
32
+ "description": "npm bundle sizes from Bundlephobia. No key required.",
33
+ "mcpName": "io.github.mrfentmen/bundlephobia-mcp",
34
+ "keywords": [
35
+ "mcp",
36
+ "bundlephobia",
37
+ "npm",
38
+ "bundle",
39
+ "performance"
40
+ ],
41
+ "engines": {
42
+ "node": ">=20"
43
+ }
44
+ }
package/server.json ADDED
@@ -0,0 +1,20 @@
1
+ {
2
+ "$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
3
+ "name": "io.github.mrfentmen/bundlephobia-mcp",
4
+ "description": "npm bundle sizes from Bundlephobia. No key required.",
5
+ "repository": {
6
+ "url": "https://github.com/mrfentmen/bundlephobia-mcp",
7
+ "source": "github"
8
+ },
9
+ "version": "1.0.0",
10
+ "packages": [
11
+ {
12
+ "registryType": "npm",
13
+ "identifier": "@mrfentmen/bundlephobia-mcp",
14
+ "version": "1.0.0",
15
+ "transport": {
16
+ "type": "stdio"
17
+ }
18
+ }
19
+ ]
20
+ }