-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 946 Bytes
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 946 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{
"name": "national-stats-mcp",
"version": "2.0.0",
"description": "MCP server for accessing National Bureau of Statistics data (supports both new V2.0 and legacy API)",
"main": "dist/index.js",
"bin": {
"national-stats-mcp": "dist/index.js"
},
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "tsx watch src/index.ts",
"lint": "eslint src --ext .ts",
"clean": "rm -rf dist"
},
"keywords": [
"mcp",
"statistics",
"api"
],
"author": "Notional Data",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.9.0",
"axios": "^1.8.4",
"commander": "^14.0.0",
"mcp-http-server": "^1.1.5",
"zod": "^3.24.2"
},
"devDependencies": {
"@types/node": "^20.10.0",
"@typescript-eslint/eslint-plugin": "^6.13.0",
"@typescript-eslint/parser": "^6.13.0",
"eslint": "^8.55.0",
"tsx": "^4.7.0",
"typescript": "^5.3.0"
}
}