get_vaccine_stats
Pack: disease · Endpoint: https://gateway.pipeworx.io/disease/mcp
Check COVID-19 vaccination progress for a country or globally. Returns cumulative doses administered daily over the past 30 days.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
country | string | no | Country name to get vaccine data for. Omit for global totals. |
Example call
Arguments
{
"country": "USA"
}
curl
curl -X POST https://gateway.pipeworx.io/disease/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"get_vaccine_stats","arguments":{"country":"USA"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('get_vaccine_stats', {
"country": "USA"
});
More examples
{}
Response shape
Always returns: country, timeline
| Field | Type | Description |
|---|---|---|
country | string | Country name or ‘global’ for worldwide data |
timeline | object | Daily cumulative vaccine doses administered by date |
Full JSON Schema
{
"type": "object",
"properties": {
"country": {
"type": "string",
"description": "Country name or 'global' for worldwide data"
},
"timeline": {
"type": "object",
"additionalProperties": {
"type": "number"
},
"description": "Daily cumulative vaccine doses administered by date"
}
},
"required": [
"country",
"timeline"
]
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"disease": {
"url": "https://gateway.pipeworx.io/disease/mcp"
}
}
}
See Getting Started for client-specific install steps.