data-gov-uk-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 +25 -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
|
+
# data.gov.uk MCP
|
|
2
|
+
|
|
3
|
+
UK government open data search from the public data.gov.uk CKAN 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
|
+
* `search` Search packages.
|
|
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 data.gov.uk CKAN API.
|
package/dist/api.js
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
const BASE = 'https://data.gov.uk/api/3/action/package_search';
|
|
2
|
+
export async function search(args) {
|
|
3
|
+
const q = (args.query ?? '').trim();
|
|
4
|
+
if (!q)
|
|
5
|
+
return 'Provide search terms.';
|
|
6
|
+
const limit = Math.max(1, Math.min(args.limit ?? 10, 25));
|
|
7
|
+
const params = new URLSearchParams({ q, rows: String(limit) });
|
|
8
|
+
const res = await fetch(`${BASE}?${params.toString()}`, {
|
|
9
|
+
headers: { 'User-Agent': 'mrfentmen-data-gov-uk-mcp/1.0', Accept: 'application/json' },
|
|
10
|
+
signal: AbortSignal.timeout(20000),
|
|
11
|
+
});
|
|
12
|
+
if (!res.ok)
|
|
13
|
+
throw new Error(`data.gov.uk returned ${res.status}`);
|
|
14
|
+
const d = (await res.json());
|
|
15
|
+
const rows = d.result?.results ?? [];
|
|
16
|
+
if (!rows.length)
|
|
17
|
+
return `No data.gov.uk packages found for "${q}".`;
|
|
18
|
+
return `data.gov.uk packages for "${q}" (${d.result?.count ?? rows.length} total, ${rows.length} shown):\n` +
|
|
19
|
+
rows
|
|
20
|
+
.map((r, i) => {
|
|
21
|
+
const s = (k) => (r[k] != null ? String(r[k]) : '');
|
|
22
|
+
return `${i + 1}. ${s('title')}${s('notes') ? ` | ${s('notes').slice(0, 90)}` : ''}${s('metadata_modified') ? ` | ${String(s('metadata_modified')).slice(0, 10)}` : ''}`;
|
|
23
|
+
})
|
|
24
|
+
.join('\n');
|
|
25
|
+
}
|
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 { search } 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: "data-gov-uk-mcp", version: "1.0.0" });
|
|
10
|
+
server.registerTool("search", {
|
|
11
|
+
title: "Search",
|
|
12
|
+
description: "Search UK open data packages.",
|
|
13
|
+
inputSchema: z.object({ query: z.string().describe("Search terms."), limit: z.number().describe("Max results.").optional() }),
|
|
14
|
+
annotations: READ_ONLY,
|
|
15
|
+
}, async (args) => {
|
|
16
|
+
try {
|
|
17
|
+
return text(await search(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/data-gov-uk-mcp.git"
|
|
7
|
+
},
|
|
8
|
+
"bin": {
|
|
9
|
+
"data-gov-uk-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": "data-gov-uk-mcp",
|
|
32
|
+
"description": "UK government open data search from data.gov.uk. No key required.",
|
|
33
|
+
"mcpName": "io.github.mrfentmen/data-gov-uk-mcp",
|
|
34
|
+
"keywords": [
|
|
35
|
+
"mcp",
|
|
36
|
+
"data.gov.uk",
|
|
37
|
+
"uk",
|
|
38
|
+
"open data",
|
|
39
|
+
"ckan"
|
|
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/data-gov-uk-mcp",
|
|
4
|
+
"description": "UK government open data search from data.gov.uk. No key required.",
|
|
5
|
+
"repository": {
|
|
6
|
+
"url": "https://github.com/mrfentmen/data-gov-uk-mcp",
|
|
7
|
+
"source": "github"
|
|
8
|
+
},
|
|
9
|
+
"version": "1.0.0",
|
|
10
|
+
"packages": [
|
|
11
|
+
{
|
|
12
|
+
"registryType": "npm",
|
|
13
|
+
"identifier": "data-gov-uk-mcp",
|
|
14
|
+
"version": "1.0.0",
|
|
15
|
+
"transport": {
|
|
16
|
+
"type": "stdio"
|
|
17
|
+
}
|
|
18
|
+
}
|
|
19
|
+
]
|
|
20
|
+
}
|