@cyanheads/openfec-mcp-server 0.4.8 → 0.4.9

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/CLAUDE.md CHANGED
@@ -1,8 +1,8 @@
1
1
  # Agent Protocol
2
2
 
3
3
  **Server:** openfec-mcp-server
4
- **Version:** 0.4.8
5
- **Framework:** [@cyanheads/mcp-ts-core](https://www.npmjs.com/package/@cyanheads/mcp-ts-core) `^0.9.16`
4
+ **Version:** 0.4.9
5
+ **Framework:** [@cyanheads/mcp-ts-core](https://www.npmjs.com/package/@cyanheads/mcp-ts-core) `^0.9.21`
6
6
  **Engines:** Bun ≥1.3.0, Node ≥24.0.0
7
7
 
8
8
  > **Read the framework docs first:** `node_modules/@cyanheads/mcp-ts-core/CLAUDE.md` contains the full API reference — builders, Context, error codes, exports, patterns. This file covers server-specific conventions only.
@@ -308,6 +308,8 @@ Available skills:
308
308
  | `api-testing` | createMockContext, test patterns |
309
309
  | `api-utils` | Formatting, parsing, security, pagination, scheduling, telemetry helpers |
310
310
  | `api-workers` | Cloudflare Workers runtime |
311
+ | `api-mirror` | MirrorService: persistent self-refreshing local SQLite mirror of a bulk upstream dataset — Tier 3 opt-in |
312
+ | `orchestrations` | Multi-server pipeline workflows — gated phase tables for maintenance, field-test, fix-wrapup-release, greenfield |
311
313
 
312
314
  When you complete a skill's checklist, check the boxes and add a completion timestamp at the end (e.g., `Completed: 2026-03-11`).
313
315
 
@@ -328,6 +330,7 @@ When you complete a skill's checklist, check the boxes and add a completion time
328
330
  | `bun run lint:packaging` | Validate `manifest.json` + `server.json` env var alignment |
329
331
  | `bun run list-skills` | Print index of available project skills |
330
332
  | `bun run bundle` | Build and pack as `.mcpb` for one-click Claude Desktop install |
333
+ | `bun run release:github` | Create GitHub Release from the current annotated tag |
331
334
  | `bun run test` | Run tests |
332
335
  | `bun run start` | Production mode (transport from `MCP_TRANSPORT_TYPE`) |
333
336
  | `bun run start:stdio` | Production mode (stdio) |
package/README.md CHANGED
@@ -7,7 +7,7 @@
7
7
 
8
8
  <div align="center">
9
9
 
10
- [![npm](https://img.shields.io/npm/v/@cyanheads/openfec-mcp-server?style=flat-square&logo=npm&logoColor=white)](https://www.npmjs.com/package/@cyanheads/openfec-mcp-server) [![Version](https://img.shields.io/badge/Version-0.4.8-blue.svg?style=flat-square)](./CHANGELOG.md) [![Docker](https://img.shields.io/badge/Docker-ghcr.io-2496ED?style=flat-square&logo=docker&logoColor=white)](https://github.com/users/cyanheads/packages/container/package/openfec-mcp-server) [![MCP SDK](https://img.shields.io/badge/MCP%20SDK-^1.29.0-green.svg?style=flat-square)](https://modelcontextprotocol.io/) [![License](https://img.shields.io/badge/License-Apache%202.0-orange.svg?style=flat-square)](./LICENSE) [![TypeScript](https://img.shields.io/badge/TypeScript-^6.0.3-3178C6.svg?style=flat-square)](https://www.typescriptlang.org/) [![Bun](https://img.shields.io/badge/Bun-^1.3.0-f9f1e1.svg?style=flat-square)](https://bun.sh/)
10
+ [![npm](https://img.shields.io/npm/v/@cyanheads/openfec-mcp-server?style=flat-square&logo=npm&logoColor=white)](https://www.npmjs.com/package/@cyanheads/openfec-mcp-server) [![Version](https://img.shields.io/badge/Version-0.4.9-blue.svg?style=flat-square)](./CHANGELOG.md) [![Docker](https://img.shields.io/badge/Docker-ghcr.io-2496ED?style=flat-square&logo=docker&logoColor=white)](https://github.com/users/cyanheads/packages/container/package/openfec-mcp-server) [![MCP SDK](https://img.shields.io/badge/MCP%20SDK-^1.29.0-green.svg?style=flat-square)](https://modelcontextprotocol.io/) [![License](https://img.shields.io/badge/License-Apache%202.0-orange.svg?style=flat-square)](./LICENSE) [![TypeScript](https://img.shields.io/badge/TypeScript-^6.0.3-3178C6.svg?style=flat-square)](https://www.typescriptlang.org/) [![Bun](https://img.shields.io/badge/Bun-^1.3.0-f9f1e1.svg?style=flat-square)](https://bun.sh/)
11
11
 
12
12
  </div>
13
13
 
@@ -189,7 +189,7 @@ A public instance is available at `https://openfec.caseyjhand.com/mcp` — no in
189
189
  ```json
190
190
  {
191
191
  "mcpServers": {
192
- "openfec": {
192
+ "openfec-mcp-server": {
193
193
  "type": "streamable-http",
194
194
  "url": "https://openfec.caseyjhand.com/mcp"
195
195
  }
@@ -204,7 +204,7 @@ Add the following to your MCP client configuration file.
204
204
  ```json
205
205
  {
206
206
  "mcpServers": {
207
- "openfec": {
207
+ "openfec-mcp-server": {
208
208
  "type": "stdio",
209
209
  "command": "bunx",
210
210
  "args": ["@cyanheads/openfec-mcp-server@latest"],
@@ -222,7 +222,7 @@ Or with Docker:
222
222
  ```json
223
223
  {
224
224
  "mcpServers": {
225
- "openfec": {
225
+ "openfec-mcp-server": {
226
226
  "type": "stdio",
227
227
  "command": "docker",
228
228
  "args": ["run", "-i", "--rm", "-e", "MCP_TRANSPORT_TYPE=stdio", "-e", "FEC_API_KEY=your-api-key", "ghcr.io/cyanheads/openfec-mcp-server:latest"]
@@ -0,0 +1,18 @@
1
+ ---
2
+ summary: "mcp-ts-core 0.9.21: per-request log context fix, secret-stripping in fetch errors, withRetry fail-fast"
3
+ breaking: false
4
+ security: false
5
+ ---
6
+
7
+ # 0.4.9 — 2026-06-02
8
+
9
+ ## Changed
10
+
11
+ - **HTTP transport per-request log context** — per-request logs and traces now carry fresh request + trace/span IDs instead of the frozen boot-time context.
12
+ - **`fetchWithTimeout` error messages** — query-string secrets (e.g. `?api_key=`) are stripped from error messages and logs before surfacing.
13
+ - **`withRetry`** — fails fast on non-retryable errors; `ctx.fail` auto-populates the `retryable` flag.
14
+
15
+ ## Dependencies
16
+
17
+ - `@cyanheads/mcp-ts-core` ^0.9.16 → ^0.9.21
18
+ - `vitest` ^4.1.7 → ^4.1.8
package/manifest.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "manifest_version": "0.3",
3
3
  "name": "openfec-mcp-server",
4
- "version": "0.4.8",
4
+ "version": "0.4.9",
5
5
  "description": "Access FEC campaign finance data through MCP. Query data about candidates, money trails, and election filings. STDIO & Streamable HTTP.",
6
6
  "author": {
7
7
  "name": "cyanheads"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cyanheads/openfec-mcp-server",
3
- "version": "0.4.8",
3
+ "version": "0.4.9",
4
4
  "mcpName": "io.github.cyanheads/openfec-mcp-server",
5
5
  "description": "Access FEC campaign finance data through MCP. Query data about candidates, money trails, and election filings. STDIO & Streamable HTTP.",
6
6
  "type": "module",
@@ -38,7 +38,8 @@
38
38
  "start": "node dist/index.js",
39
39
  "start:stdio": "MCP_TRANSPORT_TYPE=stdio bun ./dist/index.js",
40
40
  "start:http": "MCP_TRANSPORT_TYPE=http bun ./dist/index.js",
41
- "publish-mcp": "mcp-publisher login github -token \"$(security find-generic-password -a \"$USER\" -s mcp-publisher-github-pat -w)\" && mcp-publisher publish"
41
+ "publish-mcp": "mcp-publisher login github -token \"$(security find-generic-password -a \"$USER\" -s mcp-publisher-github-pat -w)\" && mcp-publisher publish",
42
+ "release:github": "bun run scripts/release-github.ts"
42
43
  },
43
44
  "keywords": [
44
45
  "mcp",
@@ -96,7 +97,7 @@
96
97
  "lodash": ">=4.17.24"
97
98
  },
98
99
  "dependencies": {
99
- "@cyanheads/mcp-ts-core": "^0.9.16",
100
+ "@cyanheads/mcp-ts-core": "^0.9.21",
100
101
  "@opentelemetry/api": "^1.9.1",
101
102
  "pino-pretty": "^13.1.3",
102
103
  "zod": "^4.4.3"
@@ -108,6 +109,6 @@
108
109
  "ignore": "^7.0.5",
109
110
  "tsc-alias": "^1.8.17",
110
111
  "typescript": "^6.0.3",
111
- "vitest": "^4.1.7"
112
+ "vitest": "^4.1.8"
112
113
  }
113
114
  }
package/server.json CHANGED
@@ -6,7 +6,7 @@
6
6
  "url": "https://github.com/cyanheads/openfec-mcp-server",
7
7
  "source": "github"
8
8
  },
9
- "version": "0.4.8",
9
+ "version": "0.4.9",
10
10
  "remotes": [
11
11
  {
12
12
  "type": "streamable-http",
@@ -19,7 +19,7 @@
19
19
  "registryBaseUrl": "https://registry.npmjs.org",
20
20
  "identifier": "@cyanheads/openfec-mcp-server",
21
21
  "runtimeHint": "bun",
22
- "version": "0.4.8",
22
+ "version": "0.4.9",
23
23
  "packageArguments": [
24
24
  {
25
25
  "type": "positional",
@@ -54,7 +54,7 @@
54
54
  "registryBaseUrl": "https://registry.npmjs.org",
55
55
  "identifier": "@cyanheads/openfec-mcp-server",
56
56
  "runtimeHint": "bun",
57
- "version": "0.4.8",
57
+ "version": "0.4.9",
58
58
  "packageArguments": [
59
59
  {
60
60
  "type": "positional",