Aihw MCP server
Query the AIHW in plain English — mortality, cancer, health spend, hospital wait times.
0 stars74 downloads/wk
Reviews
Write oneNobody has reviewed Aihw yet.
If you have run it, two minutes of your experience saves the next person an afternoon.
Aihw tools (6)
write = sends, deletes, buys or postsRead from the package source without running it. The installed server may list more.
describe_datasetDescribe a dataset's filterable dimensions, returnable measures, units, and source.
get_datalatestReturn the most recent observation(s) per measure for a dataset.
list_curatedList every curated dataset ID in this version of aihw-mcp.
search_datasetsFuzzy-search the curated AIHW dataset catalog.
top_nReturn the N rows with the largest (or smallest) value of a measure.
Public scan report
scanner v0.1.9 · 2026-09-23 · same rubric, same numbers if you re-run it
- Code scan22 source files scanned25/25
- –Live reliabilityno gateway calls yet and no remote to proben/a
- –Tool poisoningtools not inspected (local package is not executed); not countedn/a
- Auth qualitylocal package, no credentials required12/15
- Maintenancelast push 38 days ago12/15
- Maintainer identitynamespace and repository owner differ; GitHub account older than a year; website matches verified namespace7/10
What the publisher says
From the Aihw repository's README, as published. We do not edit it. Read it on GitHub
aihw-mcp
mcp-name: io.ausdata/aihw-mcp
MCP server for Australian Institute of Health and Welfare statistics. Plain-English access to long-term mortality (GRIM), regional mortality (MORT), cancer incidence and mortality (ACIM), national health expenditure, youth justice detention, and the public hospitals register — all from a single uvx command.
Hosted access? For cross-source queries, webhooks, an always-on REST API, and a uniform response envelope across all 9 sources, see ausdata.io — free tier available (500 calls/mo, no card).
"How have diabetes deaths changed since 1980?"
"What's the age-standardised mortality rate in the Sydney - Inner West SA3?"
"Show me breast cancer incidence in women aged 50–54 over time."
"How much did Australia spend on public hospitals in 2022-23?"
"How many young people are in detention in NSW vs VIC?"
"List all Principal referral hospitals in Queensland."
"Top 5 causes of death in 2023."Sister to abs-mcp (Australian Bureau of Statistics), rba-mcp (Reserve Bank of Australia), ato-mcp (Australian Taxation Office), and au-weather-mcp (Australian weather). The five together cover the macro / regulator / tax / health / climate layer of Australian official data.
Install
# Run on demand via uvx (recommended)
uvx --upgrade aihw-mcp
# Or install permanently
pip install aihw-mcpClaude Desktop
Add to claudedesktopconfig.json:
{
"mcpServers": {
"aihw": { "command": "uvx", "args": ["--upgrade", "aihw-mcp"] }
}
}Why --upgrade? uvx aihw-mcp (without the flag) uses whatever wheel is cached and never adopts new PyPI releases on its own. --upgrade makes uvx check PyPI on each launch and pull a newer release if one exists. To verify which version is currently serving you, look at the server_version field on any DataResponse.
Claude Code / Cursor
claude mcp add aihw --command uvx --args -- --upgrade aihw-mcpAuto-updating data
Beyond the wheel-level --upgrade, the server has a second auto-update path inside the data layer: when AIHW refreshes GRIM with another year of deaths data or publishes a new MORT release, aihw-mcp resolves the new resource URL via data.gov.au's CKAN API at fetch time and uses the freshest match. Hard-coded YAML URLs are the safe fallback if discovery fails. You do not need to wait for a new wheel release to get new yearly data — just delete ~/.aihw-mcp/cache.db to force a refresh, or wait for the 7-day TTL to expire.
What it exposes
Six tools, all plain-English in, structured out:
Shortened. The full README is on GitHub.
Nothing above is checked by us. What we check is on the safety report.
Install directly
claude mcp add aihw-mcp -- uvx aihw-mcp
Aihw: common questions
- Is Aihw MCP server safe?
- Yes, by our scan: it is graded A (86/100). Read the Aihw safety report
- How do I install Aihw?
- It runs on your machine. Copy the Claude Code, Claude Desktop or Cursor config from the install section.
- Does Aihw need an API key?
- Not as far as the registry entry and our scan can tell: no credentials are declared or required.
- Is Aihw maintained?
- The last commit was 39 days ago (2026-08-16). The latest release is v0.4.24.