Cdc
live GovernmentDataCDC MCP — wraps CDC open data via Socrata API (data.cdc.gov)
2 tools
0ms auth
free tier 50 calls/day
Tools
search_datasets Search CDC public health datasets by keyword. Returns dataset names, descriptions, IDs, and update dates. Example: search_datasets("influenza surveillance").
No parameters required.
Try it
Response
get_dataset Get rows from a specific CDC dataset by its Socrata dataset ID (four-by-four format like "xxxx-xxxx"). Returns data rows with all columns. Use search_datasets first to find the ID.
No parameters required.
Try it
Response
Test with curl
The gateway speaks JSON-RPC 2.0 over HTTP POST. You can test any pack directly from the terminal.
List available tools
bash
curl -X POST https://gateway.pipeworx.io/cdc/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}' Call a tool
bash
curl -X POST https://gateway.pipeworx.io/cdc/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"search_datasets","arguments":{}}}'