who_euro_dataset_measures

Pack: who-euro · Endpoint: https://gateway.pipeworx.io/who-euro/mcp

No MCP client? Call it directly: GET https://gateway.pipeworx.io/v1/tools/who_euro_dataset_measures for the schema, then POST the same URL with its arguments for the data.

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 European health data collection.

Parameters

NameTypeRequiredDescription
datasetstringyesDataset code, e.g. “HFA”, “HFAMDB”, “ENHIS”.
limitnumbernoMaximum results (default 100).

Example call

Arguments

{
  "dataset": "HFA"
}

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_dataset_measures","arguments":{"dataset":"HFA"}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('who_euro_dataset_measures', {
  "dataset": "HFA"
});

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 September 21, 2026