Who Euro

live Reference

WHO Regional Office for Europe — Data Warehouse API v5.

6 tools
0ms auth
free tier 50 calls/day

Tools

who_euro_search_measures

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 m

No parameters required.

Try it
who_euro_measure_data

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

No parameters required.

Try it
who_euro_list_datasets

List the WHO Regional Office for Europe data collections — European Health for All (HFA), the European mortality database, health and technical resources, environment and health (ENHIS), Health Behavi

No parameters required.

Try it
who_euro_dataset_measures

List every health indicator inside one WHO Europe dataset, such as HFA (European Health for All) or HFAMDB (European mortality database). Returns indicator codes and names. Use to browse a specific Eu

No parameters required.

Try it
who_euro_countries

List the countries and country groups covered by the WHO European Region Data Warehouse, with their codes. Country groups include the WHO European Region, EU members, CIS and others, and can be used d

No parameters required.

Try it
who_euro_measure_metadata

Get the definition, data source and footnotes for a WHO Europe health indicator — how it is calculated, which organisation supplied it, and country-specific caveats. Use before comparing European heal

No parameters required.

Try it

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/who-euro/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/who-euro/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"who_euro_search_measures","arguments":{}}}'

Use with the SDK

Install @pipeworx/sdk to call tools from any TypeScript/Node project.

TypeScript
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("who_euro_search_measures", {});
ask_pipeworx
// Or ask in plain English:
const answer = await px.ask("who regional office for europe — data warehouse api v5");