ghed-mcp
Provides tools for accessing and querying the World Health Organization's Global Health Expenditure Database (GHED), enabling retrieval of health expenditure indicators, country profiles, trend analyses, and research-ready panel data across countries, regions, and income groups.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@ghed-mcpCompare health expenditure trends in Brazil and Argentina from 2010 to 2020"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
ghed-mcp
A Model Context Protocol (MCP) server that gives AI assistants like Claude direct access to the World Health Organization's Global Health Expenditure Database (GHED) — purpose-built for comparative health-financing research.
What it does
ghed-mcp wraps the WHO GHED all-data workbook in a small set of task-shaped MCP tools so an AI assistant can answer questions like:
"Build me a health-financing profile for Colombia."
"Compare out-of-pocket burden across LAC countries since 2000."
"What's the government priority gradient by World Bank income group?"
"Decompose Peru's current health expenditure by financing scheme for 2023."
Country names, ISO3 codes, WHO region codes (AFR, AMR, EMR, EUR, SEAR, WPR) and World Bank income labels (Low, Lower-middle, Upper-middle, High) are all accepted, with aliases — region="Americas" and income="UMIC" work the same as the canonical values. Collective aliases match the academic global-health convention: income="LMIC" expands to the union of Low + Lower-middle + Upper-middle (not the World Bank's narrower lower-middle-only definition), and income="MIC" expands to Lower-middle + Upper-middle. CSV export is built in.
Why this exists
Raw access to GHED is technically possible from any LLM — but in practice it's painful: there is no stable documented API, the all-data workbook contains over 4,000 variables across the SHA 2011 accounting framework, indicator codes are cryptic (gghed_che is "domestic general government health expenditure as a share of current health expenditure"), and not every variable is additive (you can't sum percentages or PPP values as accounting identities). ghed-mcp collapses the friction:
Discovers the latest GHED all data workbook automatically from WHO's Documentation Centre.
Caches the XLSX locally and builds a derived SQLite database for fast queries.
Steers the model toward headline
INDICATORSfirst, with detailed SHA series available on demand.Knows the additive hierarchies (CHE = HF1+HF2+HF3+HF4+HFnec, GGHE-D = FS1+FS3, …) and validates breakdowns with a sum-vs-parent balance check.
The tool design reflects how health-financing researchers actually work: country profiles, regional and income-group benchmarks, financing-mix decompositions, and metadata for citation.
Install
Requires Python 3.11 or newer. Check yours with python3 --version — on macOS, python3 from system Python is often 3.9, in which case install a current Python via brew install python (or pyenv) before continuing.
git clone https://github.com/Decilion/ghed-mcp.git
cd ghed-mcp
python3 -m venv .venv
source .venv/bin/activate
pip install -e .Then register the server with your MCP client.
Claude Code:
claude mcp add ghed /absolute/path/to/.venv/bin/ghed-mcpClaude Desktop: add to ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows):
{
"mcpServers": {
"ghed": {
"command": "/absolute/path/to/.venv/bin/ghed-mcp"
}
}
}Codex CLI:
codex mcp add ghed -- /absolute/path/to/.venv/bin/ghed-mcpThis writes an entry to ~/.codex/config.toml. List or remove with codex mcp list / codex mcp remove ghed.
Other MCP-compatible clients (Cursor, Cline, Continue, etc.): point them at the ghed-mcp console script in your venv. The MCP protocol is the same across clients — only the registration UI differs.
Restart your client. The ghed server should appear with all tools, the ghed://indicator/{indicator_code}, ghed://methodology, ghed://topics/{topic_id}, and ghed://research-use-cases/{use_case} resources, and the compare_health_expenditure prompt available.
The first call downloads the GHED all-data workbook (~30 MB) and builds a derived SQLite cache under ~/.cache/ghed-mcp/. This takes 2–3 minutes on a fresh laptop; subsequent calls are instant. Set GHED_MCP_CACHE_DIR to relocate.
Tool reference
Tool signatures show the canonical parameter names — the server rejects unknown kwargs (Pydantic extra="forbid"), so getting the names right matters. In particular: country is singular, countries is the list form, year filters are year_start / year_end (not year_from / year_to).
Cache and version
Tool | Signature | Purpose |
|
| Download or re-download the public GHED workbook and rebuild SQLite |
|
| Workbook, SQLite cache, source document, and row counts |
|
| Compare the cached source document with the current all-data workbook metadata |
|
| Workbook version lines and cache provenance |
Methodology and discovery
Tool | Signature | Purpose |
|
| GHED variable classes, categories, cautions, and curated topics |
|
| Curated topic map for common health-expenditure questions |
|
| Literature-inspired GHED research workflows and recommended variables |
|
| Map a natural-language research question to likely GHED variables and cautions |
|
| Counts by GHED Codebook category |
|
| Paginated headline indicators only ( |
|
| Paginated full GHED codebook variables |
|
| Search headline indicators by default |
|
| Search all variables, including detailed SHA series |
|
| Codebook metadata for one variable |
Country resolution
Tool | Signature | Purpose |
|
| Countries and territories in the workbook, optionally by group |
|
| Available GHED region and income group values |
|
| Resolve a country name fragment or alias to ISO3 |
|
| Source, data-type, and estimation notes from the Metadata sheet |
|
| Latest headline health expenditure values for one country |
Data extraction
Tool | Signature | Purpose |
|
| One indicator with optional country/group/year filters |
|
| One indicator across countries, returned as tidy rows or CSV |
|
| One indicator across a country group (curated, regional, or income-based) |
|
| Group stats, coverage, top/bottom countries, and mixed-year warnings |
|
| First/latest country trends for one indicator |
|
| First/latest country trends for multiple indicators |
|
| Rank countries by absolute change, percent change, or CAGR |
Research workflows
Tool | Signature | Purpose |
|
| Availability summary for one or more variables before panel construction |
|
| Tidy long panel for multiple variables, countries, and years |
|
| Export-ready data CSV, codebook CSV, availability CSV, and README text |
Quality and accounting checks
Tool | Signature | Purpose |
|
| Known additive parent-child relationships for a variable |
|
| Classify a variable as total, component, ratio/share, amount, or context series |
|
| Country-year breakdown with child sum, shares, and balance check |
|
| Availability, metadata completeness, data-type mix, and caution flags |
Resources and prompts
Resource
ghed://indicator/{indicator_code}— readable view of one indicator's metadataResource
ghed://methodology— readable methodology guide for variable selectionResource
ghed://topics/{topic_id}— readable view of a curated topic and its indicator codesResource
ghed://research-use-cases/{use_case}— readable view of one research use casePrompt
compare_health_expenditure(countries, indicator)— guided template for cross-country health-financing analysis
Regional analysis
Both gho-mcp and ghed-mcp expose the same curated country groupings beyond what WHO and the World Bank publish as built-in dimensions. Pass country_group="LAC" (or any of the codes below) on the data tools and the server resolves to the right ISO3 list — without you having to enumerate codes by hand.
Available groups
Code | Definition | Members |
| 33 sovereign Latin American & Caribbean states (PAHO/Decilion convention) | 33 |
| World Bank's 42-economy LAC region — sovereign states plus territories (Aruba, Cayman Islands, Curaçao, Puerto Rico, etc.) | 42 |
| World Bank East Asia & Pacific (FY2026) | 38 |
| World Bank Europe & Central Asia | 58 |
| World Bank "Middle East, North Africa, Afghanistan and Pakistan" (FY2026) | 23 |
| MENA without Israel and Malta | 21 |
| World Bank North America (Bermuda, Canada, USA) | 3 |
| World Bank South Asia (FY2026 — without AFG and PAK, now in MENA) | 6 |
| World Bank Sub-Saharan Africa | 48 |
| UN Least Developed Countries | 44 |
| OECD member countries | 38 |
Aliases include natural-language ("Latin America and Caribbean", "Sub-Saharan Africa", "Least Developed Countries") and official codes (LCN, SSF, etc.). Two read-only tools — list_curated_country_groups and resolve_country_group_membership — let an assistant inspect or expand the lists at runtime.
Using country_group= on the data tools
country_group= merges (deduplicated) with any explicit countries= list and composes with region / income via AND semantics. Some illustrative calls — the first four work identically on both ghed-mcp and gho-mcp:
compare_countries(indicator_code="oops_che", country_group="LAC",
latest_only=True) # GHED
compare_countries(indicator_code="WHOSIS_000001", country_group="OECD",
year_start=2010, year_end=2023) # GHO
list_curated_country_groups() # both
resolve_country_group_membership("LAC") # both — returns 33 ISO3 codes
# ghed-mcp also exposes:
build_research_panel(indicator_codes=["che_gdp", "gghed_che"],
country_group="OECD", year_start=2000, year_end=2024)
summarize_country_group(indicator_code="ext_che", country_group="LDC",
latest_only=True)
list_countries(country_group="LAC", income="High") # LAC HICsCurated-group members are soft-resolved: ISO3 codes the underlying source doesn't publish are silently dropped (e.g. LAC_TERRITORIES includes Aruba and Curaçao, which GHED doesn't cover). User-supplied countries= are still strict-resolved, so typos still raise.
Membership cadence
The lists are static Python data baked into each package — no runtime refresh, no separate cache. Users get updates by reinstalling the package.
The LAST_VERIFIED constant in country_groups.py records when each list was last cross-checked against:
World Bank country and lending groups: https://datahelpdesk.worldbank.org/knowledgebase/articles/906519
UN Least Developed Countries: https://www.un.org/development/desa/dpad/least-developed-country-category.html
OECD members: https://www.oecd.org/about/document/list-oecd-member-countries.htm
Re-check annually. Known upcoming changes at the time of writing: Bangladesh, Lao PDR, and Nepal are scheduled to graduate from LDC status on 2026-11-24; Solomon Islands on 2027-12-13.
The same country_groups.py file lives in both ghed-mcp and gho-mcp (canonical source: ghed-mcp), so a regional analysis behaves identically against either database.
Examples
Each block below shows a natural-language prompt and a sketch of the underlying tool calls.
Country profile
"Give me a Colombia health-financing profile."
The assistant calls country_profile(country="Colombia") and returns CHE as % GDP, CHE per capita (USD), government share of CHE, OOP share of CHE, external share, GGHE-D as % GDP, and GGHE-D as % GGE — all latest year, with a mixed_reference_years warning if reference years differ.
Comparative LAC analysis
"Compare out-of-pocket burden across the Andean countries since 2000."
The assistant calls:
compare_countries(
indicator_code="oops_che",
countries=["Colombia", "Ecuador", "Peru", "Bolivia", "Venezuela"],
year_start=2000,
latest_only=False,
format="csv",
)and gets a CSV ready to drop into any spreadsheet, statistical package, or charting tool.
Income-group gradient
"What's the public health-spending priority gradient by income group in 2022?"
The assistant calls summarize_country_group("gghed_gge", income="upper middle income", year=2022) (and parallel calls for Low / Lower-middle / High), returning median, top-five, and bottom-five for each group with coverage ratios.
Accounting-identity decomposition
"Decompose Peru's CHE in 2023 by financing scheme."
The assistant calls:
explain_indicator_relationship(indicator_code="che")
build_additive_breakdown(
indicator_code="che",
country="Peru",
year=2023,
relationship_id="che_by_financing_scheme",
)and returns each child component (HF.1, HF.2, HF.3, HF.4, HF.nec) with its share of the parent and a balance check (balanced: true) confirming the sum reconciles.
From CSV output to analysis tools
compare_countries(..., format="csv") and build_research_package(...) return CSV strings under the csv, data_csv, codebook_csv, or availability_csv keys. Two common downstream paths:
To pandas — for time-series analysis or modelling:
import io, pandas as pd
# csv_text is the value of result["csv"] from compare_countries
df = pd.read_csv(io.StringIO(csv_text))
df["year"] = df["year"].astype(int)
df = df.dropna(subset=["value"]).pivot_table(
index="year", columns="country_name", values="value"
)
df.plot(title="OOP share of CHE, Andean countries")To any external tool (Excel, Google Sheets, R, Stata, Tableau, charting platforms, etc.):
with open("data.csv", "w") as f:
f.write(csv_text)The columns indicator_code, indicator_name, country_code, country_name, region, income, year, value, unit, currency are tidy-format-friendly and map cleanly into most analysis or visualization workflows. For wide-format / per-country columns, pivot first (pandas snippet above).
Advanced queries
The friendly tools cover headline indicators, country/region/income-group filtering, year ranges, and the most common additive decompositions. For everything else — detailed SHA series by function, provider, disease/condition, cross-tabs, capital, age, COVID-19 reporting items — explore the full codebook with list_variables and search_variables:
list_variables(category_1="HEALTH EXPENDITURE DATA", category_2="HEALTH CARE FUNCTIONS")
search_variables(query="diabetes", category_1="HEALTH EXPENDITURE DATA")For long-code SHA hierarchies (e.g. sha11.HC, sha11.HP, sha11.HF), use additive_hierarchy(indicator_code=...) — it returns curated codebook formulas first, then inferred direct children from the SHA long-code tree for current-NCU amount variables. Pair with build_additive_breakdown to validate any decomposition for a country-year.
Inspect what each variable actually is before pulling — explain_indicator_relationship(indicator_code) classifies it as additive_parent, component, derived_ratio_or_share, amount_series, or context_or_conversion_series and surfaces interpretation cautions.
Topics covered by topics_index
core_spending— CHE level and scale (CHE/GDP, CHE per capita USD/PPP)government_spending— GGHE-D level, share of CHE, share of GDP, fiscal priority (GGE)out_of_pocket— household burden, OOP share of CHE, OOP per capitaexternal_aid— external funding for health and donor dependenceprivate_spending— private domestic spending and voluntary prepaymentcapital— capital health expenditure (HK)primary_health_care— PHC level and share of CHEmacro_context— GDP, population, exchange rates, PPP conversion factors
research_use_cases adds literature-inspired patterns:
health_financing_transition— financing-mix change with income, time, or reformfinancial_protection_oop— OOP indicators as macro context for UHC researchgovernment_priority— government health-spending effort and priority in the public budgetdonor_dependence— external funding dependence and its trajectoryprivate_and_voluntary_insurance— private, voluntary, and prepaid arrangementsservices_providers_sha— detailed SHA series by function, provider, scheme, sourceprimary_health_care— PHC spending levels and shares
Development
pip install -e ".[dev]"
pytestTests use a synthetic GHED workbook fixture; no network access required for the standard suite.
Limitations
GHED does not expose a stable documented API. This server discovers the current all-data workbook from WHO's Documentation Centre and caches it locally; if WHO changes the directory structure or naming, the discovery logic will need a release.
First cold start downloads ~30 MB and builds a ~300 MB SQLite cache (2–3 minutes on a typical laptop). Subsequent calls reuse the cache;
refresh_cacherebuilds it.The all-data workbook contains over 4,000 variables. Detailed SHA series can be sparse for recent years; use
data_availabilityandassess_data_qualitybefore strong claims.Variant series (current NCU, constant NCU, current USD, constant USD, PPP, per-capita, %CHE, %GDP, %GGE) are not interchangeable as accounting identities.
additive_hierarchyandbuild_additive_breakdownonly validate current-NCU amount variables.Aggregate values (regional, income-group, global) are not computed by GHED; this server does not recompute them. Use
summarize_country_groupfor descriptive group statistics across reporting countries.Latest years can be preliminary — inspect Version sheet and Metadata notes via
versionandget_country_metadata.
About the WHO Global Health Expenditure Database
The WHO Global Health Expenditure Database (GHED) is the World Health Organization's central platform for internationally comparable data on health spending. It is the authoritative source for indicators on:
Levels and trends of health expenditure across 195 countries and territories, with most series running from 2000 onward
System of Health Accounts 2011 (SHA 2011) — health expenditure decomposed by financing arrangements, revenues, providers, functions, diseases and conditions, capital formation, and primary health care
Universal Health Coverage financing context — government share, out-of-pocket burden, external funding, voluntary insurance
Macro denominators and conversion variables — GDP, population, exchange rates, price indexes — to support per-capita, %GDP, constant-price, and PPP-adjusted analysis
Country-level metadata — sources, data type (Documented / Estimated / Imputed), methods of estimation, country footnotes — for transparent citation
GHED underpins WHO's Global Spending on Health annual report, Health Accounts country profiles, and the financing chapter of World Health Statistics. The data is free and openly published — through the all-data workbook this server wraps, and through the official GHED portal with its own visualizations and downloads.
This MCP server is plumbing. The data, the indicator definitions, the SHA 2011 methodological work, and the country-level data validation are all WHO's. If you use values retrieved through this server, please:
Cite WHO as the source. The
sourceblock on every data response includes the workbook path, modification time, parameters, and retrieval timestamp to make this straightforward.Visit the GHED portal for indicator metadata, methodology notes, and the official visualizations. The MCP exposes the data; the portal provides the canonical context.
Read the Global Spending on Health annual report for WHO's curated narrative analysis of what the data shows.
GHED is a public good. The most valuable contribution any user can make is to support and reference WHO's underlying data work.
Built by
Decilion — global health consulting across Latin America and the Caribbean, with an applied AI lens.
This server is one of Decilion's open-source contributions to the global health data community. It pairs naturally with gho-mcp for combined GHO + GHED workflows. If you use it in research, a brief acknowledgment is appreciated but not required.
License
MIT — see LICENSE.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Decilion/ghed-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server