Query WHO Global Health Observatory data — 3,059 indicators across 194 member states with country, region, year, and sex filters via MCP. STDIO or Streamable HTTP.
- ✓Open-source license (Apache-2.0)
- ✓Actively maintained (<30d)
- ✓Clear description
- ✓Topics declared
- ✓Documented (README)
git clone https://github.com/cyanheads/who-gho-mcp-server{
"mcpServers": {
"who-gho": {
"command": "node",
"args": ["/path/to/who-gho-mcp-server/dist/index.js"]
}
}
}MCP Servers overview
<div align="center">
<h1>@cyanheads/who-gho-mcp-server</h1>
<p><b>Query WHO Global Health Observatory data — 3,059 indicators across 194 member states with country, region, year, and sex filters via MCP. STDIO or Streamable HTTP.</b>
<div>6 Tools • 2 Resources</div>
</p>
</div>
<div align="center">
[](./CHANGELOG.md) [](./LICENSE) [](https://github.com/users/cyanheads/packages/container/package/who-gho-mcp-server) [](https://modelcontextprotocol.io/) [](https://www.npmjs.com/package/@cyanheads/who-gho-mcp-server) [](https://www.typescriptlang.org/) [](https://bun.sh/)
</div>
<div align="center">
[](https://github.com/cyanheads/who-gho-mcp-server/releases/latest/download/who-gho-mcp-server.mcpb) [](https://cursor.com/en/install-mcp?name=who-gho-mcp-server&config=eyJjb21tYW5kIjoibnB4IiwiYXJncyI6WyIteSIsIkBjeWFuaGVhZHMvd2hvLWdoby1tY3Atc2VydmVyIl19) [](https://vscode.dev/redirect?url=vscode:mcp/install?%7B%22name%22%3A%22who-gho-mcp-server%22%2C%22command%22%3A%22npx%22%2C%22args%22%3A%5B%22-y%22%2C%22%40cyanheads%2Fwho-gho-mcp-server%22%5D%7D)
[](https://www.npmjs.com/package/@cyanheads/mcp-ts-core)
**Public Hosted Server:** [https://who-gho.caseyjhand.com/mcp](https://who-gho.caseyjhand.com/mcp)
</div>
---
## Tools
6 tools for working with WHO Global Health Observatory data:
| Tool | Description |
|:---|:---|
| `who_search_indicators` | Search the GHO indicator catalog by keyword in indicator names |
| `who_list_indicators` | Browse the full indicator catalog with pagination |
| `who_get_indicator_metadata` | Fetch indicator names and supported filter dimensions for up to 10 codes |
| `who_list_dimensions` | List all dimension type codes available in the GHO API |
| `who_list_dimension_values` | List valid codes and labels for a dimension type (COUNTRY, REGION, SEX, etc.) |
| `who_query_indicator_data` | Query data rows for an indicator with spatial, temporal, and dimension filters |
### `who_search_indicators`
Search the WHO GHO indicator catalog by keyword.
- Substring match on indicator names — try terms like `"life expectancy"`, `"immunization"`, `"mortality"`, `"diabetes"`, or `"HIV"`
- Returns indicator codes and display names for use with `who_query_indicator_data`
- Offset-based pagination (`offset`) over the filtered result set; reports `totalCount`, `hasMore`, `pageInfo`, `nextOffset`
- Default limit 20, max 100
---
### `who_list_indicators`
Browse the full indicator catalog with offset-based pagination.
- No keyword required — lists all 3,059+ indicators
- Pagination via `limit` (default 50, max 500) and `offset`
- Returns `total` and `hasMore` for iteration
---
### `who_get_indicator_metadata`
Fetch metadata for one to ten indicator codes in a single call.
- Returns the full indicator name and the dimension types it supports (e.g. `COUNTRY`, `SEX`, `REGION`, `AGEGROUP`)
- Call before `who_query_indicator_data` to confirm which filter dimensions are valid
- Roughly 1,300 catalog indicators have no dimension listing upstream — those return `dimensions: []` plus a `dimensionsNote` pointing at `dim1Type`/`dim2Type` on a sample data row, not a not-found
- Codes absent from the catalog are reported in `notFound` rather than raising an error
---
### `who_list_dimensions`
List all dimension type codes available in the GHO API.
- Returns every dimension type with its human-readable title
- Common types: `COUNTRY`, `REGION`, `SEX`, `WORLDBANKINCOMEGROUP`, `AGEGROUP`
- Use to discover codes before calling `who_list_dimension_values`
---
### `who_list_dimension_values`
List valid filter values for a single dimension type.
- Returns codes and labels for the dimension's values (e.g. the 234 country entries, the 43 WHO region codes)
- Includes optional parent hierarchy fields (`parentCode`, `parentLabel`, `parentDimension`)
- `parent_code` narrows hierarchical dimensions — `dimension: "COUNTRY"`, `parent_code: "EUR"` returns the 58 country entries in the WHO European Region
- Deterministic ordering by `Code` with offset-based pagination (`offset`); returns `totalCount`, `hasMore`, `pageInfo`, `nextOffset`
- Default limit 100, max 500 — `GHO` (3,103 values) and `DHSMICSGEOREGION` (4,932) need paging
- A `parent_code` that matches nothing returns an empty page, not an error; only an unfiltered empty result means the dimension does not exist
- Use to confirm exact codes before passing them to `who_query_indicator_data`
---
### `who_query_indicator_data`
Query data rows for a single WHO GHO indicator.
- Spatial filters (mutually exclusive): `country_codes` (ISO 3166-1 alpha-3), `region_codes` (WHO regions), or `income_group_codes` (World Bank groups)
- Time range filter: `year_from` / `year_to`
- Sex filter: `SEX_BTSX` (both), `SEX_FMLE`, `SEX_MLE` — only applies when the indicator uses SEX as its first cross-cutting dimension
- Arbitrary `dim1_value` for indicators using non-SEX cross-cutting dimensions
- Optional uncertainty interval bounds (`low`/`high`) via `include_uncertainty` (default true)
- Deterministic row ordering (`sort`: `year_desc` default or `year_asc`) with offset-based pagination (`offset`); returns `totalRows`, `hasMore`, `pageInfo`, `nextOffset`
- Default limit 200, max 1000
- Primary data tool in the find-then-query workflow
## Resources
| Type | URI | Description |
|:---|:---|:---|
| Resource | `who://indicator/{indicatorCode}/metadata` | Indicator name and supported filter dimensions for a single code |
| Resource | `who://dimension/{dimensionCode}/values` | First 100 values for a dimension type |
| Resource | `who://dimension/{dimensionCode}/values{?limit,offset}` | One explicit page of a dimension type's values |
| Resource | `who://dimension/{dimensionCode}/values{?limit,offset,parentCode}` | One explicit page, narrowed to a parent code |
The three dimension-value URIs are registered separately because the MCP SDK's RFC 6570 matcher treats every query variable as required — a single template with optional variables would stop matching the bare URI. Supply every variable a template names.
## Recommended workflow
1. `who_search_indicators` — find indicator codes by keyword
2. `who_get_indicator_metadata` — confirm which filter dimensions the indicator supports
3. `who_query_indicator_data` — fetch data with country/region/year/sex filters
To look up filter codes: `who_list_dimensions` → `who_list_dimension_values`.
## Features
Built on [`@cyanheads/mcp-ts-core`](https://github.com/cyanheads/mcp-ts-core):
- Declarative tool definitions — single file per tool, framework handles registration and validation
- Unified error handling across all tools
- Pluggable auth (`none`, `jwt`, `oauth`)
- Swappable storage backends: `in-memory`, `filesystem`, `Supabase`, `Cloudflare KV/R2/D1`
- Structured logging with optional OpenTelemetry tracing
- Runs locally (stdio/HTTP) or on Cloudflare Workers from the same codebase
WHO GHO-specific:
- Full coverage of the [WHO GHO OData API v2](https://www.who.int/data/gho/info/gho-odata-api) — indicators, dimensions, dimension values, and data queries
- Configurable base URL and request timeout for custom or mirrored deployments
- Parallel metadata fan-out for multi-code indicator lookups
Agent-friendly output:
- Tool descriptions encode the cross-tool workflow — agents discover the right call order from descriptions alone
- Structured truncation signaling (`truncated`, `truncatedNote`, `hasMore`) so agents can decide whether to paginate
- Discriminated error codes with `recovery` hints on every failure path
## Getting started
### Self-Hosted / Local
Add the following to your MCP client configuration file.
```json
{
"mcpServers": {
"who-gho-mcp-server": {
"type": "stdio",
"command": "bunx",
"args": ["@cyanheads/who-gho-mcp-server@latest"],
"env": {
"MCP_TRANSPORT_TYPE": "stdio",
"MCP_LOG_LEVEL": "info"
}
}
}
}
```
Or with npx (no Bun required):
```json
{
"mcpServers": {
"who-gho-mcp-server": {
"type": "stdio",
"command": "npx",
"args": ["-y", "@cyanheads/who-gho-mcp-server@latest"],
"env": {
"MCP_TRANSPORT_TYPE": "stdio",
"MCP_LOG_LEVEL": "info"
}
}
}
}
```
Or with Docker:
```json
{
"mcpServers": {
"who-gho-mcp-server": {
"type": "stdio",
"command": "docker",
"args": ["run", "-i", "--rm", "-e", "MCP_TRANSPORT_TYPE=stdio", "ghcr.io/cyanheads/who-gho-mcp-server:latest"]
}
}
}
```
For Streamable HTTP, set the transport and start the server:
```sh
MCP_TRANSPORT_TYPE=http MCP_HTTP_PORT=3010 bun run start:http
# Server listens at http://localhost:3010/mcp
```
### Prerequisites
- [Bun v1.3.0](https://bun.sh/) or higher (or Node.js ≥24).
- No API key required — the WHO GHO API is public.
### Installation
1. **Clone the repository:**
```sh
git clone https://github.com/cyanheads/who-gho-mcp-What people ask about who-gho-mcp-server
What is cyanheads/who-gho-mcp-server?
+
cyanheads/who-gho-mcp-server is mcp servers for the Claude AI ecosystem. Query WHO Global Health Observatory data — 3,059 indicators across 194 member states with country, region, year, and sex filters via MCP. STDIO or Streamable HTTP. It has 2 GitHub stars and its last recorded update is dated 2026-08-18.
How do I install who-gho-mcp-server?
+
You can install who-gho-mcp-server by cloning the repository (https://github.com/cyanheads/who-gho-mcp-server) or following the README instructions on GitHub. ClaudeWave also provides quick install blocks on this page.
Is cyanheads/who-gho-mcp-server safe to use?
+
Our security agent has analyzed cyanheads/who-gho-mcp-server and assigned a Trust Score of 95/100 (tier: Verified). See the full breakdown of passed checks and flags on this page.
Who maintains cyanheads/who-gho-mcp-server?
+
cyanheads/who-gho-mcp-server is maintained by cyanheads. The last recorded GitHub activity is dated 2026-08-18, with 0 open issues.
Are there alternatives to who-gho-mcp-server?
+
Yes. On ClaudeWave you can browse similar mcp servers at /categories/mcp, sorted by popularity or recent activity.
Deploy who-gho-mcp-server to your cloud
Ship this repo to production in minutes. Each platform spins up its own environment with editable env vars.
Maintain this repo? Add a badge to your README
Drop the badge into your GitHub README to show it's tracked on ClaudeWave. Each badge links back to this page and reflects the live Trust Score.
[](https://claudewave.com/repo/cyanheads-who-gho-mcp-server)<a href="https://claudewave.com/repo/cyanheads-who-gho-mcp-server"><img src="https://claudewave.com/api/badge/cyanheads-who-gho-mcp-server" alt="Featured on ClaudeWave: cyanheads/who-gho-mcp-server" width="320" height="64" /></a>More MCP Servers
Fair-code workflow automation platform with native AI capabilities. Combine visual building with custom code, self-host or cloud, 400+ integrations.
User-friendly AI Interface (Supports Ollama, OpenAI API, ...)
An open-source AI agent that brings the power of Gemini directly into your terminal.
Real-time global intelligence dashboard. AI-powered news aggregation, geopolitical monitoring, and infrastructure tracking in a unified situational awareness interface
The fastest path to AI-powered full stack observability, even for lean teams.
🕷️ An adaptive Web Scraping framework that handles everything from a single request to a full-scale crawl!