Who Gho

live Health

WHO GHO MCP — World Health Organization Global Health Observatory (free, no auth)

3 tools
0ms auth
free tier 50 calls/day

Tools

get_indicators

Search or list WHO Global Health Observatory indicators. Returns indicator codes and names. Use the indicator code with get_data to retrieve actual values. Example: get_indicators("life expectancy") o

No parameters required.

Try it
get_data

Get health data values for a WHO indicator code. Returns numeric values by country and year. Example: get_data("WHOSIS_000001", country="USA", year="2020"). Use get_indicators first to find the indica

No parameters required.

Try it
list_countries

List all countries recognized by the WHO with their ISO codes. Useful for finding the correct country code to use with get_data.

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