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

NameTypeRequiredDescription
measurestringyesMeasure code from who_euro_search_measures, e.g. “HFA_1”.
countrystringnoCountry name, ISO code, or a group code (WHO_EURO, EU_MEMBERS, CIS). Omit for all countries.
yearsstringnoYear or range, e.g. “2020” or “2010-2022”. Omit for all years.
sexstringnoSex dimension code: ALL, MALE or FEMALE. Omit for all available.
limitnumbernoMaximum 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.

Regenerated from source · build August 6, 2026