cdc_discover_datasets
Search the CDC dataset catalog by keyword, category, or tag. Returns dataset IDs, names, descriptions, column lists, and update timestamps.
Search and query CDC public health data — mortality, vaccinations, surveillance, behavioral risk (Socrata SODA API) via MCP. STDIO or Streamable HTTP.
claude mcp add --transport http cdc-health-mcp-server https://cdc.caseyjhand.com/mcp
codex mcp add cdc-health-mcp-server --url https://cdc.caseyjhand.com/mcp
{
"mcpServers": {
"cdc-health-mcp-server": {
"url": "https://cdc.caseyjhand.com/mcp"
}
}
}
gemini mcp add --transport http cdc-health-mcp-server https://cdc.caseyjhand.com/mcp
{
"mcpServers": {
"cdc-health-mcp-server": {
"command": "bunx",
"args": [
"mcp-remote",
"https://cdc.caseyjhand.com/mcp"
]
}
}
}
{
"mcpServers": {
"cdc-health-mcp-server": {
"type": "http",
"url": "https://cdc.caseyjhand.com/mcp"
}
}
}
curl -X POST https://cdc.caseyjhand.com/mcp \
-H "Content-Type: application/json" \
-H "MCP-Protocol-Version: 2025-11-25" \
-d '{"jsonrpc":"2.0","id":1,"method":"initialize","params":{"protocolVersion":"2025-11-25","capabilities":{},"clientInfo":{"name":"curl","version":"1.0.0"}}}'
Search the CDC dataset catalog by keyword, category, or tag. Returns dataset IDs, names, descriptions, column lists, and update timestamps.
Fetch the full column schema for a CDC dataset — names, data types, descriptions, row count, and last-updated timestamp. Get dataset IDs from cdc_discover_datasets.
Execute a SoQL query against any CDC dataset. Supports filtering, aggregation, sorting, full-text search, and field selection. Use cdc_discover_datasets to find dataset IDs and cdc_get_dataset_schema to inspect columns before querying.
No tools match the current filter.
Top 50 CDC datasets by popularity with names, categories, and update timestamps. Provides an overview of the CDC data landscape for orientation. Use cdc_discover_datasets for full catalog search with filtering and pagination.
Dataset metadata and column schema for a specific CDC dataset, addressable by URI. Same payload as cdc_get_dataset_schema.
Structured workflow for investigating a public health question across CDC data. Guides through: discover relevant datasets, inspect schemas, query for baseline data, compare across time/geography/demographics, and synthesize findings.
topicrequired
— The health topic or question to investigate (e.g., "diabetes mortality trends by state", "childhood vaccination coverage over time").
timeRange
— Time period of interest (e.g., "2015-2023", "last 10 years"). Defaults to all available years.
geography
— Geographic scope — "national", a specific state name (e.g., "California"), or "all states" for comparison. Defaults to national.