-
-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpackage.json
More file actions
128 lines (128 loc) · 3.25 KB
/
package.json
File metadata and controls
128 lines (128 loc) · 3.25 KB
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
{
"name": "us-gov-open-data-mcp",
"version": "2026.4.11",
"description": "MCP server + standalone TypeScript SDK for 40+ U.S. government and international data APIs. 300+ tools with WASM-sandboxed code mode for context reduction. Covers Treasury, FRED, BLS, BEA, EIA, Census, FEC, Congress, Federal Register, USAspending, SEC, FBI, GovInfo, NOAA, USDA, World Bank, CDC, NAEP, College Scorecard, NREL, FDA (25 endpoints), EPA, EPA-AQS, Senate Lobbying, Regulations.gov, USDA FoodData, FEMA, NHTSA, CMS, HUD, USPTO, CFPB, FDIC, DOL, USGS, ClinicalTrials.gov, BTS, Open Payments, NIH RePORTER, DOJ News, GSA CALC+.",
"main": "dist/server.js",
"bin": {
"us-gov-open-data-mcp": "dist/server.js"
},
"exports": {
".": "./dist/server.js",
"./client": "./dist/shared/client.js",
"./sdk": "./dist/apis/index.js",
"./sdk/*": "./dist/apis/*/sdk.js"
},
"typesVersions": {
"*": {
"client": [
"dist/shared/client.d.ts"
],
"sdk": [
"dist/apis/index.d.ts"
],
"sdk/*": [
"dist/apis/*/sdk.d.ts"
]
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"start": "node dist/server.js",
"start:http": "node dist/server.js --transport httpStream --port 8080",
"dev": "tsc --watch",
"test": "vitest run",
"test:watch": "vitest",
"docs:typedoc": "cd docs && npx typedoc",
"docs:generate": "node docs/scripts/generate.mjs",
"docs:dev": "npm run docs:generate && npm run docs:typedoc && vitepress dev docs",
"docs:build": "npm run docs:generate && npm run docs:typedoc && vitepress build docs",
"docs:preview": "vitepress preview docs",
"prepare": "npm run build"
},
"keywords": [
"mcp",
"model-context-protocol",
"treasury",
"fiscal-data",
"fec",
"census",
"fred",
"economic-data",
"usaspending",
"congress",
"federal-register",
"bls",
"bea",
"eia",
"noaa",
"usda",
"world-bank",
"cdc",
"naep",
"college-scorecard",
"nrel",
"fda",
"epa",
"lobbying",
"sec",
"fbi",
"fema",
"nhtsa",
"cms",
"hud",
"uspto",
"cfpb",
"fdic",
"dol",
"osha",
"regulations",
"usgs",
"earthquake",
"clinical-trials",
"bts",
"transportation",
"government",
"open-data",
"api",
"sdk",
"typescript"
],
"author": "lzinga",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/lzinga/us-gov-open-data-mcp.git"
},
"bugs": {
"url": "https://github.com/lzinga/us-gov-open-data-mcp/issues"
},
"homepage": "https://github.com/lzinga/us-gov-open-data-mcp#readme",
"engines": {
"node": ">=18.0.0"
},
"type": "module",
"dependencies": {
"dotenv": "^17.3.1",
"fast-xml-parser": "^5.5.11",
"fastmcp": "^3.35.0",
"he": "^1.2.0",
"quickjs-emscripten": "^0.32.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/he": "^1.2.3",
"@types/node": "^25.3.0",
"mermaid": "^11.14.0",
"typedoc": "^0.28.17",
"typedoc-plugin-markdown": "^4.10.0",
"typedoc-vitepress-theme": "^1.1.2",
"typescript": "^5.9.3",
"vitepress": "^1.6.4",
"vitepress-plugin-mermaid": "^2.0.17",
"vitest": "^4.1.4"
},
"readme": "./README.md"
}