who_euro_measure_data
Pack: who-euro · Endpoint: https://gateway.pipeworx.io/who-euro/mcp
Fetch the time series for a WHO Europe health indicator, by country and year. Returns yearly values with their country, sex breakdown and units for European countries and country groups such as the EU or the WHO European Region. Use for European health statistics over time — mortality, disease incidence, health system capacity, risk factors and health expenditure.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
measure | string | yes | Measure code from who_euro_search_measures, e.g. “HFA_1”. |
country | string | no | Country name, ISO code, or a group code (WHO_EURO, EU_MEMBERS, CIS). Omit for all countries. |
years | string | no | Year or range, e.g. “2020” or “2010-2022”. Omit for all years. |
sex | string | no | Sex dimension code: ALL, MALE or FEMALE. Omit for all available. |
limit | number | no | Maximum data points returned (default 500). |
Example call
Arguments
{
"measure": "HFA_1",
"country": "Ukraine",
"years": "2015-2020"
}
curl
curl -X POST https://gateway.pipeworx.io/who-euro/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"who_euro_measure_data","arguments":{"measure":"HFA_1","country":"Ukraine","years":"2015-2020"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('who_euro_measure_data', {
"measure": "HFA_1",
"country": "Ukraine",
"years": "2015-2020"
});
More examples
{
"measure": "HFA_1",
"country": "EU_MEMBERS",
"years": "2019"
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"who-euro": {
"url": "https://gateway.pipeworx.io/who-euro/mcp"
}
}
}
See Getting Started for client-specific install steps.