@cyanheads/cdc-health-mcp-server 0.6.7 → 0.6.8

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:** cdc-health-statistics-mcp-server
4
- **Version:** 0.6.7
5
- **Framework:** [@cyanheads/mcp-ts-core](https://www.npmjs.com/package/@cyanheads/mcp-ts-core) `^0.9.16`
4
+ **Version:** 0.6.8
5
+ **Framework:** [@cyanheads/mcp-ts-core](https://www.npmjs.com/package/@cyanheads/mcp-ts-core) `^0.9.21`
6
6
  **Engines:** Bun ≥1.3.2, 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.
@@ -312,10 +312,12 @@ Available skills:
312
312
  | `git-wrapup` | Land working-tree changes as a versioned commit + annotated tag — version bump, changelog, verify, tag. Local only. |
313
313
  | `release-and-publish` | Push + npm + MCP Registry + GH Release + Docker. Picks up from `git-wrapup` |
314
314
  | `maintenance` | Investigate changelogs, adopt upstream changes, sync skills to agent dirs |
315
+ | `orchestrations` | Chain task skills into a gated multi-phase pipeline — build-out, QA-fix, update-ship — when you can spawn sub-agents |
315
316
  | `report-issue-framework` | File a bug or feature request against `@cyanheads/mcp-ts-core` via `gh` CLI |
316
317
  | `report-issue-local` | File a bug or feature request against this server's own repo via `gh` CLI |
317
318
  | `api-auth` | Auth modes, scopes, JWT/OAuth |
318
319
  | `api-canvas` | DataCanvas: register tabular data, run SQL, export, plus the `spillover()` helper for big result sets — Tier 3 opt-in |
320
+ | `api-mirror` | MirrorService: persistent self-refreshing local SQLite mirror of a bulk upstream dataset — Tier 3, Node/Bun only |
319
321
  | `api-config` | AppConfig, parseConfig, parseEnvConfig, env vars |
320
322
  | `api-context` | Context interface, logger, state, progress |
321
323
  | `api-errors` | McpError, JsonRpcErrorCode, typed error contracts, error patterns |
@@ -346,6 +348,7 @@ When you complete a skill's checklist, check the boxes and add a completion time
346
348
  | `bun run bundle` | Build and pack as `.mcpb` for one-click Claude Desktop install |
347
349
  | `bun run changelog:build` | Regenerate `CHANGELOG.md` from `changelog/*.md` |
348
350
  | `bun run changelog:check` | Verify `CHANGELOG.md` is in sync (used by devcheck) |
351
+ | `bun run release:github` | Create GitHub Release from the current tag |
349
352
  | `bun run test` | Run tests |
350
353
  | `bun run start:stdio` | Production mode (stdio) — `bun run rebuild && bun run start:stdio` for dev smoke-tests |
351
354
  | `bun run start:http` | Production mode (HTTP) — `bun run rebuild && bun run start:http` for dev smoke-tests |
package/README.md CHANGED
@@ -7,7 +7,7 @@
7
7
 
8
8
  <div align="center">
9
9
 
10
- [![Version](https://img.shields.io/badge/Version-0.6.7-blue.svg?style=flat-square)](./CHANGELOG.md) [![License](https://img.shields.io/badge/License-Apache%202.0-orange.svg?style=flat-square)](./LICENSE) [![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/cdc-health-mcp-server) [![MCP SDK](https://img.shields.io/badge/MCP%20SDK-^1.29.0-green.svg?style=flat-square)](https://modelcontextprotocol.io/) [![npm](https://img.shields.io/npm/v/@cyanheads/cdc-health-mcp-server?style=flat-square&logo=npm&logoColor=white)](https://www.npmjs.com/package/@cyanheads/cdc-health-mcp-server) [![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/)
10
+ [![Version](https://img.shields.io/badge/Version-0.6.8-blue.svg?style=flat-square)](./CHANGELOG.md) [![License](https://img.shields.io/badge/License-Apache%202.0-orange.svg?style=flat-square)](./LICENSE) [![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/cdc-health-mcp-server) [![MCP SDK](https://img.shields.io/badge/MCP%20SDK-^1.29.0-green.svg?style=flat-square)](https://modelcontextprotocol.io/) [![npm](https://img.shields.io/npm/v/@cyanheads/cdc-health-mcp-server?style=flat-square&logo=npm&logoColor=white)](https://www.npmjs.com/package/@cyanheads/cdc-health-mcp-server) [![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/)
11
11
 
12
12
  </div>
13
13
 
@@ -105,7 +105,7 @@ A public instance is available at `https://cdc.caseyjhand.com/mcp` — no instal
105
105
  ```json
106
106
  {
107
107
  "mcpServers": {
108
- "cdc-health": {
108
+ "cdc-health-mcp-server": {
109
109
  "type": "streamable-http",
110
110
  "url": "https://cdc.caseyjhand.com/mcp"
111
111
  }
@@ -120,7 +120,7 @@ Add the following to your MCP client configuration file.
120
120
  ```json
121
121
  {
122
122
  "mcpServers": {
123
- "cdc-health": {
123
+ "cdc-health-mcp-server": {
124
124
  "type": "stdio",
125
125
  "command": "bunx",
126
126
  "args": ["@cyanheads/cdc-health-mcp-server@latest"],
@@ -138,7 +138,7 @@ Or with npx (no Bun required):
138
138
  ```json
139
139
  {
140
140
  "mcpServers": {
141
- "cdc-health": {
141
+ "cdc-health-mcp-server": {
142
142
  "type": "stdio",
143
143
  "command": "npx",
144
144
  "args": ["-y", "@cyanheads/cdc-health-mcp-server@latest"],
@@ -156,7 +156,7 @@ Or with Docker:
156
156
  ```json
157
157
  {
158
158
  "mcpServers": {
159
- "cdc-health": {
159
+ "cdc-health-mcp-server": {
160
160
  "type": "stdio",
161
161
  "command": "docker",
162
162
  "args": ["run", "-i", "--rm", "-e", "MCP_TRANSPORT_TYPE=stdio", "ghcr.io/cyanheads/cdc-health-mcp-server:latest"]
package/manifest.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "manifest_version": "0.3",
3
3
  "name": "cdc-health-mcp-server",
4
- "version": "0.6.7",
4
+ "version": "0.6.8",
5
5
  "description": "Search and query CDC public health data — mortality, vaccinations, surveillance, behavioral risk (Socrata SODA API).",
6
6
  "author": {
7
7
  "name": "cyanheads"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cyanheads/cdc-health-mcp-server",
3
- "version": "0.6.7",
3
+ "version": "0.6.8",
4
4
  "description": "Search and query CDC public health data — mortality, vaccinations, surveillance, behavioral risk (Socrata SODA API) via MCP. STDIO or Streamable HTTP.",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -34,6 +34,7 @@
34
34
  "publish-mcp": "mcp-publisher login github -token \"$(security find-generic-password -a \"$USER\" -s mcp-publisher-github-pat -w)\" && mcp-publisher publish",
35
35
  "changelog:build": "bun scripts/build-changelog.ts",
36
36
  "changelog:check": "bun scripts/check-docs-sync.ts",
37
+ "release:github": "bun scripts/release-github.ts",
37
38
  "test": "vitest run",
38
39
  "start:stdio": "MCP_TRANSPORT_TYPE=stdio node dist/index.js",
39
40
  "start:http": "MCP_TRANSPORT_TYPE=http node dist/index.js"
@@ -81,7 +82,7 @@
81
82
  "access": "public"
82
83
  },
83
84
  "dependencies": {
84
- "@cyanheads/mcp-ts-core": "^0.9.16",
85
+ "@cyanheads/mcp-ts-core": "^0.9.21",
85
86
  "pino-pretty": "^13.1.3",
86
87
  "zod": "^4.4.3"
87
88
  },
@@ -89,11 +90,11 @@
89
90
  "@biomejs/biome": "^2.4.16",
90
91
  "@opentelemetry/api": "^1.9.1",
91
92
  "@types/node": "^25.9.1",
92
- "@vitest/coverage-istanbul": "^4.1.7",
93
+ "@vitest/coverage-istanbul": "^4.1.8",
93
94
  "depcheck": "^1.4.7",
94
95
  "ignore": "^7.0.5",
95
96
  "tsc-alias": "^1.8.17",
96
97
  "typescript": "^6.0.3",
97
- "vitest": "^4.1.7"
98
+ "vitest": "^4.1.8"
98
99
  }
99
100
  }
package/server.json CHANGED
@@ -6,7 +6,7 @@
6
6
  "url": "https://github.com/cyanheads/cdc-health-mcp-server",
7
7
  "source": "github"
8
8
  },
9
- "version": "0.6.7",
9
+ "version": "0.6.8",
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/cdc-health-mcp-server",
21
21
  "runtimeHint": "node",
22
- "version": "0.6.7",
22
+ "version": "0.6.8",
23
23
  "packageArguments": [
24
24
  {
25
25
  "type": "positional",
@@ -54,7 +54,7 @@
54
54
  "registryBaseUrl": "https://registry.npmjs.org",
55
55
  "identifier": "@cyanheads/cdc-health-mcp-server",
56
56
  "runtimeHint": "node",
57
- "version": "0.6.7",
57
+ "version": "0.6.8",
58
58
  "packageArguments": [
59
59
  {
60
60
  "type": "positional",