who_euro_search_measures
Pack: who-euro · Endpoint: https://gateway.pipeworx.io/who-euro/mcp
Find health indicators in the WHO Regional Office for Europe Data Warehouse by name — tuberculosis incidence, life expectancy, hospital beds, alcohol consumption, immunization coverage and thousands more across 53 European countries, many with series back to the 1970s. Returns the measure code needed to fetch data, with the indicator name and when its data was last updated. Use to find European health statistics and WHO Europe indicator codes.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
query | string | yes | Words from the indicator name, e.g. “tuberculosis incidence” or “life expectancy”. |
dataset | string | no | Restrict to one dataset code, e.g. “HFA” or “HFAMDB”. Optional. |
limit | number | no | Maximum results (default 25). |
Example call
Arguments
{
"query": "tuberculosis"
}
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_search_measures","arguments":{"query":"tuberculosis"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('who_euro_search_measures', {
"query": "tuberculosis"
});
More examples
{
"query": "life expectancy"
}
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.