@cyanheads/cdc-health-mcp-server 0.4.1 → 0.4.2

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,7 +1,7 @@
1
1
  # Agent Protocol
2
2
 
3
3
  **Server:** cdc-health-statistics-mcp-server
4
- **Version:** 0.4.1
4
+ **Version:** 0.4.2
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.
package/README.md CHANGED
@@ -7,9 +7,15 @@
7
7
 
8
8
  <div align="center">
9
9
 
10
- [![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) [![Version](https://img.shields.io/badge/Version-0.4.1-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/)
10
+ [![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) [![Version](https://img.shields.io/badge/Version-0.4.2-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
- [![License](https://img.shields.io/badge/License-Apache%202.0-orange.svg?style=flat-square)](./LICENSE) [![TypeScript](https://img.shields.io/badge/TypeScript-^5.9.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/)
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.2-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
+
14
+ </div>
15
+
16
+ <div align="center">
17
+
18
+ **Public Hosted Server:** [https://cdc.caseyjhand.com/mcp](https://cdc.caseyjhand.com/mcp)
13
19
 
14
20
  </div>
15
21
 
@@ -86,6 +92,23 @@ CDC-specific:
86
92
 
87
93
  ## Getting started
88
94
 
95
+ ### Public Hosted Instance
96
+
97
+ A public instance is available at `https://cdc.caseyjhand.com/mcp` — no installation required. Point any MCP client at it via Streamable HTTP:
98
+
99
+ ```json
100
+ {
101
+ "mcpServers": {
102
+ "cdc-health": {
103
+ "type": "streamable-http",
104
+ "url": "https://cdc.caseyjhand.com/mcp"
105
+ }
106
+ }
107
+ }
108
+ ```
109
+
110
+ ### Self-Hosted / Local
111
+
89
112
  Add the following to your MCP client configuration file.
90
113
 
91
114
  ```json
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cyanheads/cdc-health-mcp-server",
3
- "version": "0.4.1",
3
+ "version": "0.4.2",
4
4
  "description": "MCP server for discovering and querying CDC public health datasets via the Socrata SODA API.",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -67,14 +67,14 @@
67
67
  "pino-pretty": "^13.1.3"
68
68
  },
69
69
  "devDependencies": {
70
- "@biomejs/biome": "^2.4.7",
70
+ "@biomejs/biome": "^2.4.10",
71
71
  "@opentelemetry/api": "^1.9.1",
72
- "@types/node": "^25.5.0",
72
+ "@types/node": "^25.5.2",
73
73
  "@vitest/coverage-istanbul": "^4.1.2",
74
74
  "depcheck": "^1.4.7",
75
75
  "ignore": "^7.0.5",
76
76
  "tsc-alias": "^1.8.16",
77
- "typescript": "^5.9.3",
78
- "vitest": "^4.1.0"
77
+ "typescript": "^6.0.2",
78
+ "vitest": "^4.1.2"
79
79
  }
80
80
  }
package/server.json CHANGED
@@ -6,14 +6,20 @@
6
6
  "url": "https://github.com/cyanheads/cdc-health-mcp-server",
7
7
  "source": "github"
8
8
  },
9
- "version": "0.4.1",
9
+ "version": "0.4.2",
10
+ "remotes": [
11
+ {
12
+ "type": "streamable-http",
13
+ "url": "https://cdc.caseyjhand.com/mcp"
14
+ }
15
+ ],
10
16
  "packages": [
11
17
  {
12
18
  "registryType": "npm",
13
19
  "registryBaseUrl": "https://registry.npmjs.org",
14
20
  "identifier": "@cyanheads/cdc-health-mcp-server",
15
21
  "runtimeHint": "node",
16
- "version": "0.4.1",
22
+ "version": "0.4.2",
17
23
  "packageArguments": [
18
24
  {
19
25
  "type": "positional",
@@ -48,7 +54,7 @@
48
54
  "registryBaseUrl": "https://registry.npmjs.org",
49
55
  "identifier": "@cyanheads/cdc-health-mcp-server",
50
56
  "runtimeHint": "node",
51
- "version": "0.4.1",
57
+ "version": "0.4.2",
52
58
  "packageArguments": [
53
59
  {
54
60
  "type": "positional",