-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
114 lines (114 loc) · 3.46 KB
/
Copy pathpackage.json
File metadata and controls
114 lines (114 loc) · 3.46 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
{
"name": "@cyanheads/openfec-mcp-server",
"version": "0.4.13",
"mcpName": "io.github.cyanheads/openfec-mcp-server",
"description": "Access FEC campaign finance data through MCP. Query data about candidates, money trails, and election filings. STDIO & Streamable HTTP.",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"openfec-mcp-server": "dist/index.js"
},
"files": [
"dist/",
"README.md",
"LICENSE",
"CLAUDE.md",
"Dockerfile",
"server.json",
"manifest.json",
"changelog/"
],
"scripts": {
"build": "bun run scripts/build.ts",
"rebuild": "bun run scripts/clean.ts && bun run build",
"clean": "bun run scripts/clean.ts",
"devcheck": "bun run scripts/devcheck.ts",
"tree": "bun run scripts/tree.ts",
"format": "biome check --write .",
"format:unsafe": "biome check --write --unsafe .",
"lint:mcp": "bun run scripts/lint-mcp.ts",
"lint:packaging": "bun run scripts/lint-packaging.ts",
"list-skills": "bun run scripts/list-skills.ts",
"bundle": "bun run build && bunx -y @anthropic-ai/mcpb pack . dist/openfec-mcp-server.mcpb && bun run scripts/clean-mcpb.ts dist/openfec-mcp-server.mcpb",
"audit:refresh": "rm -f bun.lock && bun install && bun audit",
"changelog:build": "bun run scripts/build-changelog.ts",
"changelog:check": "bun run scripts/build-changelog.ts --check",
"test": "bunx vitest run",
"start": "node dist/index.js",
"start:stdio": "MCP_TRANSPORT_TYPE=stdio bun ./dist/index.js",
"start:http": "MCP_TRANSPORT_TYPE=http bun ./dist/index.js",
"publish-mcp": "mcp-publisher login github -token \"$(security find-generic-password -a \"$USER\" -s mcp-publisher-github-pat -w)\" && mcp-publisher publish",
"release:github": "bun run scripts/release-github.ts"
},
"keywords": [
"mcp",
"mcp-server",
"model-context-protocol",
"openfec",
"fec",
"campaign-finance",
"elections",
"federal-elections",
"political-contributions",
"typescript",
"bun",
"stdio",
"streamable-http",
"ai-agent"
],
"repository": {
"type": "git",
"url": "git+https://github.com/cyanheads/openfec-mcp-server.git"
},
"bugs": {
"url": "https://github.com/cyanheads/openfec-mcp-server/issues"
},
"homepage": "https://github.com/cyanheads/openfec-mcp-server#readme",
"author": "cyanheads <casey@caseyjhand.com> (https://github.com/cyanheads/openfec-mcp-server#readme)",
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/cyanheads"
},
{
"type": "buy_me_a_coffee",
"url": "https://www.buymeacoffee.com/cyanheads"
}
],
"license": "Apache-2.0",
"packageManager": "bun@1.3.11",
"engines": {
"bun": ">=1.3.0",
"node": ">=24.0.0"
},
"publishConfig": {
"access": "public"
},
"overrides": {
"brace-expansion": ">=2.0.3",
"express-rate-limit": ">=8.2.2",
"hono": ">=4.12.14",
"@hono/node-server": ">=1.19.13",
"path-to-regexp": ">=8.4.0",
"picomatch": ">=4.0.4",
"vite": ">=8.0.5",
"yaml": ">=2.8.3",
"lodash": ">=4.17.24"
},
"dependencies": {
"@cyanheads/mcp-ts-core": "^0.10.9",
"@opentelemetry/api": "^1.9.1",
"pino-pretty": "^13.1.3",
"zod": "^4.4.3"
},
"devDependencies": {
"@biomejs/biome": "^2.5.0",
"@types/node": "^26.0.0",
"depcheck": "^1.4.7",
"ignore": "^7.0.5",
"tsc-alias": "^1.8.17",
"typescript": "^6.0.3",
"vitest": "^4.1.9"
}
}