GnistAI GnistAI
Log in

WHO GHO (Global Health Observatory)

WHO Global Health Observatory — 2000+ health indicators covering diseases, mortality, risk factors, health systems, and UHC coverage across 194 member states.

Overview   |   MCP Docs   |   API Docs   |   OpenAPI   |   Playground   |   Tutorial   |   Toolkits   |   Home
status: healthy status status healthy healthy tools: 5 tools tools 5 5 Health

Data source: WHO GHO OData API

MCP MCP Protocol

Endpoint https://context.gnist.ai/mcp/who-gho/
claude_desktop_config.json
{
  "mcpServers": {
    "gnist-who-gho": {
      "url": "https://context.gnist.ai/mcp/who-gho/",
      "headers": {
        "Gnist-API-Key": "YOUR_API_KEY"
      }
    }
  }
}
Shell
curl -X POST "https://context.gnist.ai/mcp/who-gho/" \
  -H "Content-Type: application/json" \
  -H "Accept: application/json, text/event-stream" \
  -H "Gnist-API-Key: YOUR_API_KEY" \
  -d '{"jsonrpc": "2.0", "method": "tools/call", "id": 1, "params": {"name": "search_health_indicators", "arguments": {"query": "example"}}}'

API REST API

API Root https://context.gnist.ai/rest/who-gho/

5 endpoints available:

Shell
curl "https://context.gnist.ai/rest/who-gho/search_health_indicators?query=example" \
  -H "Gnist-API-Key: YOUR_API_KEY"
Python
import httpx

resp = httpx.get(
    "https://context.gnist.ai/rest/who-gho/search_health_indicators",
    headers={"Gnist-API-Key": "YOUR_API_KEY"},
    params={
        "query": "example"
},
)
print(resp.json())

OpenAPI Spec  ·  Full API Docs

CLI Command Line

Command gc who-gho

CLI documentation will be available when the GnistAI SDK is published.

Install
pip install gnistai

Available Tools (5)

search_health_indicators
Search for WHO health indicators by keyword.
ParameterTypeRequiredDescription
querystringrequiredSearch term (e.g. 'life expectancy', 'malaria', 'tuberculosis', 'obesity').
max_resultsintegeroptionalMaximum number of indicators to return. (default: 25)
get_health_indicator_data
Get data for a specific WHO health indicator.
ParameterTypeRequiredDescription
indicator_codestringrequiredWHO GHO indicator code (e.g. 'WHOSIS_000001' for life expectancy). Use search_health_indicators() to find codes.
countryanyoptionalISO alpha-3 country code (e.g. 'NOR', 'USA', 'GBR'). Omit for all countries.
year_fromanyoptionalStart year (inclusive).
year_toanyoptionalEnd year (inclusive).
sexanyoptionalFilter by sex: 'male', 'female', or 'both'.
max_resultsintegeroptionalMaximum data points to return. (default: 500)
compare_countries_health
Compare countries on a specific health indicator.
ParameterTypeRequiredDescription
indicator_codestringrequiredWHO GHO indicator code to compare across countries.
countrieslist[string]requiredList of ISO alpha-3 country codes (e.g. ['NOR', 'SWE', 'DNK', 'FIN']).
yearanyoptionalSpecific year to compare. Omit for latest available.
get_country_health_profile
Get a comprehensive health profile for a country.
ParameterTypeRequiredDescription
countrystringrequiredISO alpha-3 country code (e.g. 'NOR', 'USA', 'GBR', 'JPN').
report_feedback
Report a bug, feature request, or general feedback for this data source.
ParameterTypeRequiredDescription
feedbackstringrequired
feedback_typestringoptional (default: "general")

Related