who_euro_dataset_measures
Pack: who-euro · Endpoint: https://gateway.pipeworx.io/who-euro/mcp
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
| Name | Type | Required | Description |
|---|---|---|---|
dataset | string | yes | Dataset code, e.g. “HFA”, “HFAMDB”, “ENHIS”. |
limit | number | no | Maximum 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.