@cyanheads/congressgov-mcp-server 0.3.14 → 0.3.15

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.
Files changed (36) hide show
  1. package/AGENTS.md +7 -3
  2. package/CLAUDE.md +7 -3
  3. package/Dockerfile +2 -2
  4. package/README.md +1 -1
  5. package/dist/mcp-server/resources/definitions/bill-types.resource.d.ts +1 -1
  6. package/dist/mcp-server/resources/definitions/bill-types.resource.d.ts.map +1 -1
  7. package/dist/mcp-server/resources/definitions/bill.resource.d.ts +1 -1
  8. package/dist/mcp-server/resources/definitions/bill.resource.d.ts.map +1 -1
  9. package/dist/mcp-server/resources/definitions/committee.resource.d.ts +1 -1
  10. package/dist/mcp-server/resources/definitions/committee.resource.d.ts.map +1 -1
  11. package/dist/mcp-server/resources/definitions/current-congress.resource.d.ts +1 -1
  12. package/dist/mcp-server/resources/definitions/current-congress.resource.d.ts.map +1 -1
  13. package/dist/mcp-server/resources/definitions/member.resource.d.ts +1 -1
  14. package/dist/mcp-server/resources/definitions/member.resource.d.ts.map +1 -1
  15. package/dist/mcp-server/tools/definitions/bill-lookup.tool.d.ts +1 -1
  16. package/dist/mcp-server/tools/definitions/bill-lookup.tool.d.ts.map +1 -1
  17. package/dist/mcp-server/tools/definitions/bill-summaries.tool.d.ts +1 -1
  18. package/dist/mcp-server/tools/definitions/bill-summaries.tool.d.ts.map +1 -1
  19. package/dist/mcp-server/tools/definitions/committee-lookup.tool.d.ts +1 -1
  20. package/dist/mcp-server/tools/definitions/committee-lookup.tool.d.ts.map +1 -1
  21. package/dist/mcp-server/tools/definitions/committee-reports.tool.d.ts +1 -1
  22. package/dist/mcp-server/tools/definitions/committee-reports.tool.d.ts.map +1 -1
  23. package/dist/mcp-server/tools/definitions/crs-reports.tool.d.ts +1 -1
  24. package/dist/mcp-server/tools/definitions/crs-reports.tool.d.ts.map +1 -1
  25. package/dist/mcp-server/tools/definitions/daily-record.tool.d.ts +1 -1
  26. package/dist/mcp-server/tools/definitions/daily-record.tool.d.ts.map +1 -1
  27. package/dist/mcp-server/tools/definitions/enacted-laws.tool.d.ts +1 -1
  28. package/dist/mcp-server/tools/definitions/enacted-laws.tool.d.ts.map +1 -1
  29. package/dist/mcp-server/tools/definitions/member-lookup.tool.d.ts +1 -1
  30. package/dist/mcp-server/tools/definitions/member-lookup.tool.d.ts.map +1 -1
  31. package/dist/mcp-server/tools/definitions/roll-votes.tool.d.ts +1 -1
  32. package/dist/mcp-server/tools/definitions/roll-votes.tool.d.ts.map +1 -1
  33. package/dist/mcp-server/tools/definitions/senate-nominations.tool.d.ts +1 -1
  34. package/dist/mcp-server/tools/definitions/senate-nominations.tool.d.ts.map +1 -1
  35. package/package.json +7 -7
  36. package/server.json +3 -3
package/AGENTS.md CHANGED
@@ -1,7 +1,7 @@
1
1
  # Agent Protocol
2
2
 
3
3
  **Server:** congressgov-mcp-server
4
- **Version:** 0.3.14
4
+ **Version:** 0.3.15
5
5
  **Framework:** [@cyanheads/mcp-ts-core](https://www.npmjs.com/package/@cyanheads/mcp-ts-core)
6
6
 
7
7
  > **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.
@@ -221,10 +221,13 @@ Available skills:
221
221
  | `api-context` | Context interface, logger, state, progress |
222
222
  | `api-errors` | McpError, JsonRpcErrorCode, error patterns |
223
223
  | `api-linter` | MCP definition linter rules reference — look up `format-parity`, `schema-*`, `name-*`, `server-json-*` diagnostics |
224
+ | `api-canvas` | DataCanvas: register tabular data, run SQL, export, plus the `spillover()` helper — Tier 3 opt-in |
224
225
  | `api-services` | LLM, Speech, Graph services |
226
+ | `api-telemetry` | OTel catalog: spans, metrics, completion logs, env config, cardinality rules |
225
227
  | `api-testing` | createMockContext, test patterns |
226
- | `api-utils` | Formatting, parsing, security, pagination, scheduling |
228
+ | `api-utils` | Formatting, parsing, security, pagination, scheduling, telemetry helpers |
227
229
  | `api-workers` | Cloudflare Workers runtime |
230
+ | `tool-defs-analysis` | Audit MCP definition language across the surface — voice, leaks, defaults, recovery hints, output descriptions |
228
231
 
229
232
  When you complete a skill's checklist, check the boxes and add a completion timestamp at the end (e.g., `Completed: 2026-03-11`).
230
233
 
@@ -261,13 +264,14 @@ Each per-version file opens with YAML frontmatter:
261
264
  ---
262
265
  summary: One-line headline, ≤250 chars # required — powers the rollup index
263
266
  breaking: false # optional — true flags breaking changes
267
+ security: false # optional — true flags security fixes
264
268
  ---
265
269
 
266
270
  # 0.3.14 — YYYY-MM-DD
267
271
  ...
268
272
  ```
269
273
 
270
- `breaking: true` renders a `· ⚠️ Breaking` badge in the rollup — use it when consumers must update code on upgrade (signature changes, removed APIs, config renames).
274
+ `breaking: true` renders a `· ⚠️ Breaking` badge — use it when consumers must update code on upgrade (signature changes, removed APIs, config renames). `security: true` renders a `· 🛡️ Security` badge and pairs with a `## Security` body section. When both are set, badges render `· ⚠️ Breaking · 🛡️ Security`.
271
275
 
272
276
  ---
273
277
 
package/CLAUDE.md CHANGED
@@ -1,7 +1,7 @@
1
1
  # Agent Protocol
2
2
 
3
3
  **Server:** congressgov-mcp-server
4
- **Version:** 0.3.14
4
+ **Version:** 0.3.15
5
5
  **Framework:** [@cyanheads/mcp-ts-core](https://www.npmjs.com/package/@cyanheads/mcp-ts-core)
6
6
 
7
7
  > **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.
@@ -221,10 +221,13 @@ Available skills:
221
221
  | `api-context` | Context interface, logger, state, progress |
222
222
  | `api-errors` | McpError, JsonRpcErrorCode, error patterns |
223
223
  | `api-linter` | MCP definition linter rules reference — look up `format-parity`, `schema-*`, `name-*`, `server-json-*` diagnostics |
224
+ | `api-canvas` | DataCanvas: register tabular data, run SQL, export, plus the `spillover()` helper — Tier 3 opt-in |
224
225
  | `api-services` | LLM, Speech, Graph services |
226
+ | `api-telemetry` | OTel catalog: spans, metrics, completion logs, env config, cardinality rules |
225
227
  | `api-testing` | createMockContext, test patterns |
226
- | `api-utils` | Formatting, parsing, security, pagination, scheduling |
228
+ | `api-utils` | Formatting, parsing, security, pagination, scheduling, telemetry helpers |
227
229
  | `api-workers` | Cloudflare Workers runtime |
230
+ | `tool-defs-analysis` | Audit MCP definition language across the surface — voice, leaks, defaults, recovery hints, output descriptions |
228
231
 
229
232
  When you complete a skill's checklist, check the boxes and add a completion timestamp at the end (e.g., `Completed: 2026-03-11`).
230
233
 
@@ -261,13 +264,14 @@ Each per-version file opens with YAML frontmatter:
261
264
  ---
262
265
  summary: One-line headline, ≤250 chars # required — powers the rollup index
263
266
  breaking: false # optional — true flags breaking changes
267
+ security: false # optional — true flags security fixes
264
268
  ---
265
269
 
266
270
  # 0.3.14 — YYYY-MM-DD
267
271
  ...
268
272
  ```
269
273
 
270
- `breaking: true` renders a `· ⚠️ Breaking` badge in the rollup — use it when consumers must update code on upgrade (signature changes, removed APIs, config renames).
274
+ `breaking: true` renders a `· ⚠️ Breaking` badge — use it when consumers must update code on upgrade (signature changes, removed APIs, config renames). `security: true` renders a `· 🛡️ Security` badge and pairs with a `## Security` body section. When both are set, badges render `· ⚠️ Breaking · 🛡️ Security`.
271
275
 
272
276
  ---
273
277
 
package/Dockerfile CHANGED
@@ -4,7 +4,7 @@
4
4
  # This stage installs all dependencies (including dev), builds the TypeScript
5
5
  # source code into JavaScript, and prepares the production assets.
6
6
  # ==============================================================================
7
- FROM oven/bun:1 AS build
7
+ FROM oven/bun:1.3 AS build
8
8
 
9
9
  WORKDIR /usr/src/app
10
10
 
@@ -28,7 +28,7 @@ RUN bun run build
28
28
  # application. It uses a slim base image and only includes production
29
29
  # dependencies and build artifacts.
30
30
  # ==============================================================================
31
- FROM oven/bun:1-slim AS production
31
+ FROM oven/bun:1.3-slim AS production
32
32
 
33
33
  WORKDIR /usr/src/app
34
34
 
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/congressgov-mcp-server?style=flat-square&logo=npm&logoColor=white)](https://www.npmjs.com/package/@cyanheads/congressgov-mcp-server) [![Version](https://img.shields.io/badge/Version-0.3.14-blue.svg?style=flat-square)](./CHANGELOG.md) [![Framework](https://img.shields.io/badge/Built%20on-@cyanheads/mcp--ts--core-259?style=flat-square)](https://www.npmjs.com/package/@cyanheads/mcp-ts-core) [![MCP SDK](https://img.shields.io/badge/MCP%20SDK-^1.27.1-green.svg?style=flat-square)](https://modelcontextprotocol.io/)
10
+ [![npm](https://img.shields.io/npm/v/@cyanheads/congressgov-mcp-server?style=flat-square&logo=npm&logoColor=white)](https://www.npmjs.com/package/@cyanheads/congressgov-mcp-server) [![Version](https://img.shields.io/badge/Version-0.3.15-blue.svg?style=flat-square)](./CHANGELOG.md) [![Framework](https://img.shields.io/badge/Built%20on-@cyanheads/mcp--ts--core-259?style=flat-square)](https://www.npmjs.com/package/@cyanheads/mcp-ts-core) [![MCP SDK](https://img.shields.io/badge/MCP%20SDK-^1.29.0-green.svg?style=flat-square)](https://modelcontextprotocol.io/)
11
11
 
12
12
  [![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-v1.3.2-blueviolet.svg?style=flat-square)](https://bun.sh/)
13
13
 
@@ -4,5 +4,5 @@
4
4
  */
5
5
  export declare const billTypesResource: import("@cyanheads/mcp-ts-core").ResourceDefinition<import("zod").ZodObject<Readonly<{
6
6
  [k: string]: import("zod/v4/core").$ZodType<unknown, unknown, import("zod/v4/core").$ZodTypeInternals<unknown, unknown>>;
7
- }>, import("zod/v4/core").$strip>, undefined>;
7
+ }>, import("zod/v4/core").$strip>, undefined, undefined>;
8
8
  //# sourceMappingURL=bill-types.resource.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"bill-types.resource.d.ts","sourceRoot":"","sources":["../../../../src/mcp-server/resources/definitions/bill-types.resource.ts"],"names":[],"mappings":"AAAA;;;GAGG;AA8BH,eAAO,MAAM,iBAAiB;;6CAc5B,CAAC"}
1
+ {"version":3,"file":"bill-types.resource.d.ts","sourceRoot":"","sources":["../../../../src/mcp-server/resources/definitions/bill-types.resource.ts"],"names":[],"mappings":"AAAA;;;GAGG;AA8BH,eAAO,MAAM,iBAAiB;;wDAc5B,CAAC"}
@@ -7,5 +7,5 @@ export declare const billResource: import("@cyanheads/mcp-ts-core").ResourceDefi
7
7
  congress: z.ZodString;
8
8
  billType: z.ZodString;
9
9
  billNumber: z.ZodString;
10
- }, z.core.$strip>, undefined>;
10
+ }, z.core.$strip>, undefined, undefined>;
11
11
  //# sourceMappingURL=bill.resource.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"bill.resource.d.ts","sourceRoot":"","sources":["../../../../src/mcp-server/resources/definitions/bill.resource.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,OAAO,EAAY,CAAC,EAAE,MAAM,wBAAwB,CAAC;AAIrD,eAAO,MAAM,YAAY;;;;6BA2BvB,CAAC"}
1
+ {"version":3,"file":"bill.resource.d.ts","sourceRoot":"","sources":["../../../../src/mcp-server/resources/definitions/bill.resource.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,OAAO,EAAY,CAAC,EAAE,MAAM,wBAAwB,CAAC;AAIrD,eAAO,MAAM,YAAY;;;;wCA2BvB,CAAC"}
@@ -5,5 +5,5 @@
5
5
  import { z } from '@cyanheads/mcp-ts-core';
6
6
  export declare const committeeResource: import("@cyanheads/mcp-ts-core").ResourceDefinition<z.ZodObject<{
7
7
  committeeCode: z.ZodString;
8
- }, z.core.$strip>, undefined>;
8
+ }, z.core.$strip>, undefined, undefined>;
9
9
  //# sourceMappingURL=committee.resource.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"committee.resource.d.ts","sourceRoot":"","sources":["../../../../src/mcp-server/resources/definitions/committee.resource.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,OAAO,EAAY,CAAC,EAAE,MAAM,wBAAwB,CAAC;AAGrD,eAAO,MAAM,iBAAiB;;6BAmB5B,CAAC"}
1
+ {"version":3,"file":"committee.resource.d.ts","sourceRoot":"","sources":["../../../../src/mcp-server/resources/definitions/committee.resource.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,OAAO,EAAY,CAAC,EAAE,MAAM,wBAAwB,CAAC;AAGrD,eAAO,MAAM,iBAAiB;;wCAmB5B,CAAC"}
@@ -4,5 +4,5 @@
4
4
  */
5
5
  export declare const currentCongressResource: import("@cyanheads/mcp-ts-core").ResourceDefinition<import("zod").ZodObject<Readonly<{
6
6
  [k: string]: import("zod/v4/core").$ZodType<unknown, unknown, import("zod/v4/core").$ZodTypeInternals<unknown, unknown>>;
7
- }>, import("zod/v4/core").$strip>, undefined>;
7
+ }>, import("zod/v4/core").$strip>, undefined, undefined>;
8
8
  //# sourceMappingURL=current-congress.resource.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"current-congress.resource.d.ts","sourceRoot":"","sources":["../../../../src/mcp-server/resources/definitions/current-congress.resource.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAKH,eAAO,MAAM,uBAAuB;;6CAkBlC,CAAC"}
1
+ {"version":3,"file":"current-congress.resource.d.ts","sourceRoot":"","sources":["../../../../src/mcp-server/resources/definitions/current-congress.resource.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAKH,eAAO,MAAM,uBAAuB;;wDAkBlC,CAAC"}
@@ -5,5 +5,5 @@
5
5
  import { z } from '@cyanheads/mcp-ts-core';
6
6
  export declare const memberResource: import("@cyanheads/mcp-ts-core").ResourceDefinition<z.ZodObject<{
7
7
  bioguideId: z.ZodString;
8
- }, z.core.$strip>, undefined>;
8
+ }, z.core.$strip>, undefined, undefined>;
9
9
  //# sourceMappingURL=member.resource.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"member.resource.d.ts","sourceRoot":"","sources":["../../../../src/mcp-server/resources/definitions/member.resource.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,OAAO,EAAY,CAAC,EAAE,MAAM,wBAAwB,CAAC;AAGrD,eAAO,MAAM,cAAc;;6BAczB,CAAC"}
1
+ {"version":3,"file":"member.resource.d.ts","sourceRoot":"","sources":["../../../../src/mcp-server/resources/definitions/member.resource.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,OAAO,EAAY,CAAC,EAAE,MAAM,wBAAwB,CAAC;AAGrD,eAAO,MAAM,cAAc;;wCAczB,CAAC"}
@@ -33,5 +33,5 @@ export declare const billLookupTool: import("@cyanheads/mcp-ts-core").ToolDefini
33
33
  toDateTime: z.ZodOptional<z.ZodString>;
34
34
  limit: z.ZodDefault<z.ZodNumber>;
35
35
  offset: z.ZodDefault<z.ZodNumber>;
36
- }, z.core.$strip>, z.ZodObject<{}, z.core.$loose>>;
36
+ }, z.core.$strip>, z.ZodObject<{}, z.core.$loose>, undefined>;
37
37
  //# sourceMappingURL=bill-lookup.tool.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"bill-lookup.tool.d.ts","sourceRoot":"","sources":["../../../../src/mcp-server/tools/definitions/bill-lookup.tool.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,OAAO,EAAQ,CAAC,EAAE,MAAM,wBAAwB,CAAC;AA2BjD,eAAO,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;kDA0FzB,CAAC"}
1
+ {"version":3,"file":"bill-lookup.tool.d.ts","sourceRoot":"","sources":["../../../../src/mcp-server/tools/definitions/bill-lookup.tool.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,OAAO,EAAQ,CAAC,EAAE,MAAM,wBAAwB,CAAC;AA2BjD,eAAO,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6DA0FzB,CAAC"}
@@ -19,5 +19,5 @@ export declare const billSummariesTool: import("@cyanheads/mcp-ts-core").ToolDef
19
19
  toDateTime: z.ZodOptional<z.ZodString>;
20
20
  limit: z.ZodDefault<z.ZodNumber>;
21
21
  offset: z.ZodDefault<z.ZodNumber>;
22
- }, z.core.$strip>, z.ZodObject<{}, z.core.$loose>>;
22
+ }, z.core.$strip>, z.ZodObject<{}, z.core.$loose>, undefined>;
23
23
  //# sourceMappingURL=bill-summaries.tool.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"bill-summaries.tool.d.ts","sourceRoot":"","sources":["../../../../src/mcp-server/tools/definitions/bill-summaries.tool.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,OAAO,EAAQ,CAAC,EAAE,MAAM,wBAAwB,CAAC;AAQjD,eAAO,MAAM,iBAAiB;;;;;;;;;;;;;;;;kDA+D5B,CAAC"}
1
+ {"version":3,"file":"bill-summaries.tool.d.ts","sourceRoot":"","sources":["../../../../src/mcp-server/tools/definitions/bill-summaries.tool.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,OAAO,EAAQ,CAAC,EAAE,MAAM,wBAAwB,CAAC;AAQjD,eAAO,MAAM,iBAAiB;;;;;;;;;;;;;;;;6DA+D5B,CAAC"}
@@ -24,5 +24,5 @@ export declare const committeeLookupTool: import("@cyanheads/mcp-ts-core").ToolD
24
24
  recent: "recent";
25
25
  oldest: "oldest";
26
26
  }>>;
27
- }, z.core.$strip>, z.ZodObject<{}, z.core.$loose>>;
27
+ }, z.core.$strip>, z.ZodObject<{}, z.core.$loose>, undefined>;
28
28
  //# sourceMappingURL=committee-lookup.tool.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"committee-lookup.tool.d.ts","sourceRoot":"","sources":["../../../../src/mcp-server/tools/definitions/committee-lookup.tool.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAGH,OAAO,EAAQ,CAAC,EAAE,MAAM,wBAAwB,CAAC;AAMjD,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;;;;;;;;;kDA2F9B,CAAC"}
1
+ {"version":3,"file":"committee-lookup.tool.d.ts","sourceRoot":"","sources":["../../../../src/mcp-server/tools/definitions/committee-lookup.tool.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAGH,OAAO,EAAQ,CAAC,EAAE,MAAM,wBAAwB,CAAC;AAMjD,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;;;;;;;;;6DA2F9B,CAAC"}
@@ -18,5 +18,5 @@ export declare const committeeReportsTool: import("@cyanheads/mcp-ts-core").Tool
18
18
  reportNumber: z.ZodOptional<z.ZodNumber>;
19
19
  limit: z.ZodDefault<z.ZodNumber>;
20
20
  offset: z.ZodDefault<z.ZodNumber>;
21
- }, z.core.$strip>, z.ZodObject<{}, z.core.$loose>>;
21
+ }, z.core.$strip>, z.ZodObject<{}, z.core.$loose>, undefined>;
22
22
  //# sourceMappingURL=committee-reports.tool.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"committee-reports.tool.d.ts","sourceRoot":"","sources":["../../../../src/mcp-server/tools/definitions/committee-reports.tool.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,OAAO,EAAQ,CAAC,EAAE,MAAM,wBAAwB,CAAC;AAKjD,eAAO,MAAM,oBAAoB;;;;;;;;;;;;;;;kDAgF/B,CAAC"}
1
+ {"version":3,"file":"committee-reports.tool.d.ts","sourceRoot":"","sources":["../../../../src/mcp-server/tools/definitions/committee-reports.tool.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,OAAO,EAAQ,CAAC,EAAE,MAAM,wBAAwB,CAAC;AAKjD,eAAO,MAAM,oBAAoB;;;;;;;;;;;;;;;6DAgF/B,CAAC"}
@@ -11,5 +11,5 @@ export declare const crsReportsTool: import("@cyanheads/mcp-ts-core").ToolDefini
11
11
  reportNumber: z.ZodOptional<z.ZodString>;
12
12
  limit: z.ZodDefault<z.ZodNumber>;
13
13
  offset: z.ZodDefault<z.ZodNumber>;
14
- }, z.core.$strip>, z.ZodObject<{}, z.core.$loose>>;
14
+ }, z.core.$strip>, z.ZodObject<{}, z.core.$loose>, undefined>;
15
15
  //# sourceMappingURL=crs-reports.tool.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"crs-reports.tool.d.ts","sourceRoot":"","sources":["../../../../src/mcp-server/tools/definitions/crs-reports.tool.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,OAAO,EAAQ,CAAC,EAAE,MAAM,wBAAwB,CAAC;AAKjD,eAAO,MAAM,cAAc;;;;;;;;kDAkCzB,CAAC"}
1
+ {"version":3,"file":"crs-reports.tool.d.ts","sourceRoot":"","sources":["../../../../src/mcp-server/tools/definitions/crs-reports.tool.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,OAAO,EAAQ,CAAC,EAAE,MAAM,wBAAwB,CAAC;AAKjD,eAAO,MAAM,cAAc;;;;;;;;6DAkCzB,CAAC"}
@@ -13,5 +13,5 @@ export declare const dailyRecordTool: import("@cyanheads/mcp-ts-core").ToolDefin
13
13
  issueNumber: z.ZodOptional<z.ZodNumber>;
14
14
  limit: z.ZodDefault<z.ZodNumber>;
15
15
  offset: z.ZodDefault<z.ZodNumber>;
16
- }, z.core.$strip>, z.ZodObject<{}, z.core.$loose>>;
16
+ }, z.core.$strip>, z.ZodObject<{}, z.core.$loose>, undefined>;
17
17
  //# sourceMappingURL=daily-record.tool.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"daily-record.tool.d.ts","sourceRoot":"","sources":["../../../../src/mcp-server/tools/definitions/daily-record.tool.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,OAAO,EAAQ,CAAC,EAAE,MAAM,wBAAwB,CAAC;AAKjD,eAAO,MAAM,eAAe;;;;;;;;;;kDAwE1B,CAAC"}
1
+ {"version":3,"file":"daily-record.tool.d.ts","sourceRoot":"","sources":["../../../../src/mcp-server/tools/definitions/daily-record.tool.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,OAAO,EAAQ,CAAC,EAAE,MAAM,wBAAwB,CAAC;AAKjD,eAAO,MAAM,eAAe;;;;;;;;;;6DAwE1B,CAAC"}
@@ -16,5 +16,5 @@ export declare const enactedLawsTool: import("@cyanheads/mcp-ts-core").ToolDefin
16
16
  lawNumber: z.ZodOptional<z.ZodNumber>;
17
17
  limit: z.ZodDefault<z.ZodNumber>;
18
18
  offset: z.ZodDefault<z.ZodNumber>;
19
- }, z.core.$strip>, z.ZodObject<{}, z.core.$loose>>;
19
+ }, z.core.$strip>, z.ZodObject<{}, z.core.$loose>, undefined>;
20
20
  //# sourceMappingURL=enacted-laws.tool.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"enacted-laws.tool.d.ts","sourceRoot":"","sources":["../../../../src/mcp-server/tools/definitions/enacted-laws.tool.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,OAAO,EAAQ,CAAC,EAAE,MAAM,wBAAwB,CAAC;AAKjD,eAAO,MAAM,eAAe;;;;;;;;;;;;;kDAkD1B,CAAC"}
1
+ {"version":3,"file":"enacted-laws.tool.d.ts","sourceRoot":"","sources":["../../../../src/mcp-server/tools/definitions/enacted-laws.tool.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,OAAO,EAAQ,CAAC,EAAE,MAAM,wBAAwB,CAAC;AAKjD,eAAO,MAAM,eAAe;;;;;;;;;;;;;6DAkD1B,CAAC"}
@@ -17,5 +17,5 @@ export declare const memberLookupTool: import("@cyanheads/mcp-ts-core").ToolDefi
17
17
  currentMember: z.ZodOptional<z.ZodBoolean>;
18
18
  limit: z.ZodDefault<z.ZodNumber>;
19
19
  offset: z.ZodDefault<z.ZodNumber>;
20
- }, z.core.$strip>, z.ZodObject<{}, z.core.$loose>>;
20
+ }, z.core.$strip>, z.ZodObject<{}, z.core.$loose>, undefined>;
21
21
  //# sourceMappingURL=member-lookup.tool.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"member-lookup.tool.d.ts","sourceRoot":"","sources":["../../../../src/mcp-server/tools/definitions/member-lookup.tool.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,OAAO,EAAQ,CAAC,EAAE,MAAM,wBAAwB,CAAC;AAKjD,eAAO,MAAM,gBAAgB;;;;;;;;;;;;;;kDA+F3B,CAAC"}
1
+ {"version":3,"file":"member-lookup.tool.d.ts","sourceRoot":"","sources":["../../../../src/mcp-server/tools/definitions/member-lookup.tool.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,OAAO,EAAQ,CAAC,EAAE,MAAM,wBAAwB,CAAC;AAKjD,eAAO,MAAM,gBAAgB;;;;;;;;;;;;;;6DA+F3B,CAAC"}
@@ -14,5 +14,5 @@ export declare const rollVotesTool: import("@cyanheads/mcp-ts-core").ToolDefinit
14
14
  voteNumber: z.ZodOptional<z.ZodNumber>;
15
15
  limit: z.ZodDefault<z.ZodNumber>;
16
16
  offset: z.ZodDefault<z.ZodNumber>;
17
- }, z.core.$strip>, z.ZodObject<{}, z.core.$loose>>;
17
+ }, z.core.$strip>, z.ZodObject<{}, z.core.$loose>, undefined>;
18
18
  //# sourceMappingURL=roll-votes.tool.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"roll-votes.tool.d.ts","sourceRoot":"","sources":["../../../../src/mcp-server/tools/definitions/roll-votes.tool.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,OAAO,EAAQ,CAAC,EAAE,MAAM,wBAAwB,CAAC;AAKjD,eAAO,MAAM,aAAa;;;;;;;;;;;kDA+DxB,CAAC"}
1
+ {"version":3,"file":"roll-votes.tool.d.ts","sourceRoot":"","sources":["../../../../src/mcp-server/tools/definitions/roll-votes.tool.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,OAAO,EAAQ,CAAC,EAAE,MAAM,wBAAwB,CAAC;AAKjD,eAAO,MAAM,aAAa;;;;;;;;;;;6DA+DxB,CAAC"}
@@ -17,5 +17,5 @@ export declare const senateNominationsTool: import("@cyanheads/mcp-ts-core").Too
17
17
  ordinal: z.ZodOptional<z.ZodNumber>;
18
18
  limit: z.ZodDefault<z.ZodNumber>;
19
19
  offset: z.ZodDefault<z.ZodNumber>;
20
- }, z.core.$strip>, z.ZodObject<{}, z.core.$loose>>;
20
+ }, z.core.$strip>, z.ZodObject<{}, z.core.$loose>, undefined>;
21
21
  //# sourceMappingURL=senate-nominations.tool.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"senate-nominations.tool.d.ts","sourceRoot":"","sources":["../../../../src/mcp-server/tools/definitions/senate-nominations.tool.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,OAAO,EAAQ,CAAC,EAAE,MAAM,wBAAwB,CAAC;AAKjD,eAAO,MAAM,qBAAqB;;;;;;;;;;;;;;kDAqGhC,CAAC"}
1
+ {"version":3,"file":"senate-nominations.tool.d.ts","sourceRoot":"","sources":["../../../../src/mcp-server/tools/definitions/senate-nominations.tool.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,OAAO,EAAQ,CAAC,EAAE,MAAM,wBAAwB,CAAC;AAKjD,eAAO,MAAM,qBAAqB;;;;;;;;;;;;;;6DAqGhC,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cyanheads/congressgov-mcp-server",
3
- "version": "0.3.14",
3
+ "version": "0.3.15",
4
4
  "description": "Access U.S. congressional data - bills, votes, members, committees - through MCP. STDIO & Streamable HTTP.",
5
5
  "mcpName": "io.github.cyanheads/congressgov-mcp-server",
6
6
  "type": "module",
@@ -60,22 +60,22 @@
60
60
  "license": "Apache-2.0",
61
61
  "packageManager": "bun@1.3.2",
62
62
  "engines": {
63
- "node": ">=22.0.0",
64
- "bun": ">=1.2.0"
63
+ "node": ">=24.0.0",
64
+ "bun": ">=1.3.0"
65
65
  },
66
66
  "publishConfig": {
67
67
  "access": "public"
68
68
  },
69
69
  "dependencies": {
70
- "@cyanheads/mcp-ts-core": "^0.7.0",
70
+ "@cyanheads/mcp-ts-core": "^0.8.19",
71
71
  "pino-pretty": "^13.1.3"
72
72
  },
73
73
  "devDependencies": {
74
- "@biomejs/biome": "^2.4.13",
75
- "@types/node": "^25.6.0",
74
+ "@biomejs/biome": "^2.4.14",
75
+ "@types/node": "^25.6.2",
76
76
  "depcheck": "^1.4.7",
77
77
  "ignore": "^7.0.5",
78
- "tsc-alias": "^1.8.16",
78
+ "tsc-alias": "^1.8.17",
79
79
  "typescript": "^6.0.3",
80
80
  "vitest": "^4.1.5"
81
81
  }
package/server.json CHANGED
@@ -6,7 +6,7 @@
6
6
  "url": "https://github.com/cyanheads/congressgov-mcp-server",
7
7
  "source": "github"
8
8
  },
9
- "version": "0.3.14",
9
+ "version": "0.3.15",
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/congressgov-mcp-server",
21
21
  "runtimeHint": "bun",
22
- "version": "0.3.14",
22
+ "version": "0.3.15",
23
23
  "packageArguments": [
24
24
  {
25
25
  "type": "positional",
@@ -54,7 +54,7 @@
54
54
  "registryBaseUrl": "https://registry.npmjs.org",
55
55
  "identifier": "@cyanheads/congressgov-mcp-server",
56
56
  "runtimeHint": "bun",
57
- "version": "0.3.14",
57
+ "version": "0.3.15",
58
58
  "packageArguments": [
59
59
  {
60
60
  "type": "positional",