who_euro_measure_metadata
Pack: who-euro · Endpoint: https://gateway.pipeworx.io/who-euro/mcp
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 health indicator values across countries or years.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
measure | string | yes | Measure code, e.g. “HFA_1”. |
Example call
Arguments
{
"measure": "HFA_1"
}
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_metadata","arguments":{"measure":"HFA_1"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('who_euro_measure_metadata', {
"measure": "HFA_1"
});
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.