eurostat-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 +20 -0
- package/dist/api.js +60 -0
- package/dist/index.js +4 -0
- package/dist/server.js +24 -0
- package/package.json +44 -0
- package/server.json +20 -0
package/README.md
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
# Eurostat MCP
|
|
2
|
+
|
|
3
|
+
European statistics datasets from the public Eurostat dissemination 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
|
+
* `dataset` Dataset summary and values.
|
|
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 Eurostat API, the official EU statistics source.
|
package/dist/api.js
ADDED
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
const BASE = "https://ec.europa.eu/eurostat/api/dissemination/statistics/1.0/data";
|
|
2
|
+
const UA = "mrfentmen-eurostat-mcp/1.0 (https://github.com/mrfentmen)";
|
|
3
|
+
export class EurostatError extends Error {
|
|
4
|
+
}
|
|
5
|
+
async function get(url) {
|
|
6
|
+
const res = await fetch(url, {
|
|
7
|
+
headers: { "User-Agent": UA, Accept: "application/json" },
|
|
8
|
+
signal: AbortSignal.timeout(45000),
|
|
9
|
+
});
|
|
10
|
+
if (!res.ok)
|
|
11
|
+
throw new EurostatError(`Eurostat returned HTTP ${res.status}`);
|
|
12
|
+
return (await res.json());
|
|
13
|
+
}
|
|
14
|
+
function dimLabels(d) {
|
|
15
|
+
const cat = d?.category ?? {};
|
|
16
|
+
const index = (cat?.index ?? {});
|
|
17
|
+
return Object.entries(index).sort((a, b) => a[1] - b[1]).map(([k]) => k);
|
|
18
|
+
}
|
|
19
|
+
export async function dataset(args) {
|
|
20
|
+
const code = (args.code ?? "").trim();
|
|
21
|
+
if (!code)
|
|
22
|
+
throw new EurostatError("Provide a dataset code like teilm020");
|
|
23
|
+
const geo = (args.geo ?? "").trim().toUpperCase();
|
|
24
|
+
const limit = Math.min(args.limit ?? 8, 20);
|
|
25
|
+
const params = new URLSearchParams({ format: "JSON", lang: "en" });
|
|
26
|
+
if (geo)
|
|
27
|
+
params.set("geo", geo);
|
|
28
|
+
const d = await get(`${BASE}/${encodeURIComponent(code)}?${params.toString()}`);
|
|
29
|
+
if (d?.class !== "dataset")
|
|
30
|
+
throw new EurostatError(`Dataset not found: ${code}`);
|
|
31
|
+
const dims = (d?.dimension ?? {});
|
|
32
|
+
const dimNames = Object.keys(dims);
|
|
33
|
+
const value = (d?.value ?? {});
|
|
34
|
+
const values = Object.entries(value).slice(0, limit);
|
|
35
|
+
const lines = [
|
|
36
|
+
`Dataset ${code}: ${d?.label ?? "n/a"}`,
|
|
37
|
+
`Updated: ${d?.updated ?? "n/a"}`,
|
|
38
|
+
`Dimensions: ${dimNames.join(", ")}`,
|
|
39
|
+
];
|
|
40
|
+
if (values.length) {
|
|
41
|
+
lines.push("", "Sample values:");
|
|
42
|
+
for (const [idxStr, val] of values) {
|
|
43
|
+
const idx = Number(idxStr);
|
|
44
|
+
if (!Number.isInteger(idx))
|
|
45
|
+
continue;
|
|
46
|
+
const labels = dimNames.map((dn, n) => {
|
|
47
|
+
const dim = dims[dn];
|
|
48
|
+
const list = dimLabels(dim);
|
|
49
|
+
const dimSize = list.length;
|
|
50
|
+
const sizeAfter = dimNames.slice(n + 1).reduce((acc, dn2) => acc * Math.max(dimLabels(dims[dn2]).length, 1), 1);
|
|
51
|
+
const slot = sizeAfter > 0 ? Math.floor(idx / sizeAfter) % Math.max(dimSize, 1) : 0;
|
|
52
|
+
return `${dn}=${list[slot] ?? "?"}`;
|
|
53
|
+
});
|
|
54
|
+
lines.push(`${labels.join(" | ")}: ${val != null ? val.toLocaleString() : "n/a"}`);
|
|
55
|
+
}
|
|
56
|
+
}
|
|
57
|
+
if (Object.keys(value).length > limit)
|
|
58
|
+
lines.push(`... and ${Object.keys(value).length - limit} more values`);
|
|
59
|
+
return lines.join("\n");
|
|
60
|
+
}
|
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 { dataset } 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: "eurostat-mcp", version: "1.0.0" });
|
|
10
|
+
server.registerTool("dataset", {
|
|
11
|
+
title: "Dataset",
|
|
12
|
+
description: "Summary and values for a Eurostat dataset.",
|
|
13
|
+
inputSchema: z.object({ code: z.string().describe("Dataset code like teilm020."), geo: z.string().describe("Optional country code like DE.").optional(), limit: z.number().describe("Max results.").optional() }),
|
|
14
|
+
annotations: READ_ONLY,
|
|
15
|
+
}, async (args) => {
|
|
16
|
+
try {
|
|
17
|
+
return text(await dataset(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/eurostat-mcp.git"
|
|
7
|
+
},
|
|
8
|
+
"bin": {
|
|
9
|
+
"eurostat-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": "eurostat-mcp",
|
|
32
|
+
"description": "European statistics datasets from Eurostat. No key required.",
|
|
33
|
+
"mcpName": "io.github.mrfentmen/eurostat-mcp",
|
|
34
|
+
"keywords": [
|
|
35
|
+
"mcp",
|
|
36
|
+
"eurostat",
|
|
37
|
+
"statistics",
|
|
38
|
+
"europe",
|
|
39
|
+
"data"
|
|
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/eurostat-mcp",
|
|
4
|
+
"description": "European statistics datasets from Eurostat. No key required.",
|
|
5
|
+
"repository": {
|
|
6
|
+
"url": "https://github.com/mrfentmen/eurostat-mcp",
|
|
7
|
+
"source": "github"
|
|
8
|
+
},
|
|
9
|
+
"version": "1.0.0",
|
|
10
|
+
"packages": [
|
|
11
|
+
{
|
|
12
|
+
"registryType": "npm",
|
|
13
|
+
"identifier": "eurostat-mcp",
|
|
14
|
+
"version": "1.0.0",
|
|
15
|
+
"transport": {
|
|
16
|
+
"type": "stdio"
|
|
17
|
+
}
|
|
18
|
+
}
|
|
19
|
+
]
|
|
20
|
+
}
|