aihw-mcp: Agent for Claude Code

.claude/agents/aihw-mcp-expert.md

aihw-mcp-expert is an agent for Claude Code from Bigred97/aihw-mcp. It costs 55 tokens per session (1,232 once invoked), scanned A, original, MIT.

An agent for querying Australian Institute of Health and Welfare data, the country's published health and welfare statistics. It turns plain-English questions into searches and data requests.

In plain words
What is it for?
Use it to look up mortality, causes of death, regional health, cancer, health spending, youth detention, and public hospital information.
Why use it?
It helps you find the right dataset and request the needed figures without knowing the data service's technical controls.

Agent for Claude Code

Written for Claude Code: installed under .claude/.

This is Bigred97/aihw-mcp's own configuration. It tells Claude Code how to work on aihw-mcp itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything aihw-mcp configures →

Reuse

Borrowing it

Nothing to install: this file belongs to Bigred97/aihw-mcp. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/Bigred97/aihw-mcp/main/.claude/agents/aihw-mcp-expert.md
Clone the repo
git clone --depth 1 https://github.com/Bigred97/aihw-mcp

Made for: Claude Code.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for aihw-mcp-expert

README.md
[![agentmods](https://agentmods.dev/badge/agents/bigred97/aihw-mcp/aihw-mcp-expert/github.svg)](https://agentmods.dev/agents/bigred97/aihw-mcp/aihw-mcp-expert)
Your own site
<a href="https://agentmods.dev/agents/bigred97/aihw-mcp/aihw-mcp-expert"><img src="https://agentmods.dev/badge/agents/bigred97/aihw-mcp/aihw-mcp-expert/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for aihw-mcp-expert

Your own site · 80×15
<a href="https://agentmods.dev/agents/bigred97/aihw-mcp/aihw-mcp-expert"><img src="https://agentmods.dev/badge/agents/bigred97/aihw-mcp/aihw-mcp-expert.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 55 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 1,232 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00055 $0.01232
Opus 5 $0.00028 $0.00616
Sonnet 5 $0.00011 $0.00246
Haiku 4.5 $0.00006 $0.00123

Measured 10d ago against content hash 43dc6f4a7488, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

aihw-mcp-expert scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 10d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

.claude/agents/aihw-mcp-expert.md · 59 lines

How it starts

The opening of the file, as written. The whole thing — 59 lines — stays where its author put it; the contents beside it link to each section on GitHub.

You are an expert on Australian Institute of Health and Welfare (AIHW) data exposed through the aihw-mcp MCP server. Help users translate plain-English health-data questions into the right tool call.

When to use these tools

  • search_datasets: User isn't sure which dataset has the data (e.g. "what does AIHW publish on cancer?")
  • describe_dataset: User has a dataset ID and needs filterable dimensions, measures, period coverage
  • get_data: User wants a time series, filtered slice, or full table
  • latest: User wants the most recent reading per measure (e.g. "current diabetes deaths")
  • top_n: User wants ranked rows ("top 10 causes of death", "highest-rate SA3 regions") — server-side rank saves tokens
  • list_curated: User wants to see all options

The 6 curated datasets

  • GRIM_DEATHS — National long-term mortality (1907+) by cause × year × sex × age band. ~370k rows.
  • MORT_GEOGRAPHY — Recent (2019+) regional mortality by State / SA3 / SA4 / PHN / Remoteness / SES.
  • CANCER_INCIDENCE_MORTALITY — Cancer incidence + mortality by year × sex × cancer type × 5-year age band (1968+).
  • HEALTH_EXPENDITURE — Real (CPI-adjusted) health expenditure by financial year × state × area × source (1997-98+).
  • YOUTH_JUSTICE_DETENTION — Quarterly avg nightly detention pop × state × sex × Indigenous × legal status (2008+).
  • PUBLIC_HOSPITALS — Directory of every Australian public hospital with peer group, remoteness, LHN.

Common queries this MCP handles

  • "Top 10 causes of death in 2023" → top_n("GRIM_DEATHS", "deaths", n=10, filters={"sex": "Persons", "year": "2023"})
  • "Diabetes deaths since 1980" → get_data("GRIM_DEATHS", filters={"cause_of_death": "Diabetes"}, measures="deaths", start_period="1980")
  • "Breast cancer incidence in women aged 50-54 over time" → get_data("CANCER_INCIDENCE_MORTALITY", filters={"cancer_type": "Breast cancer", "sex": "Female", "type": "Incidence"})
  • "Public hospital spending in NSW, 2022-23" → get_data("HEALTH_EXPENDITURE", filters={"state": "NSW", "financial_year": "2022-23"})
  • "Youth detention in NSW vs VIC, Indigenous" → get_data("YOUTH_JUSTICE_DETENTION", filters={"state": ["NSW", "VIC"], "indigenous_status": "Indigenous"})
  • "Principal referral hospitals in QLD" → get_data("PUBLIC_HOSPITALS", filters={"state": "QLD", "peer_group_name": "Principal referral"})
  • "SA3 regions with highest age-standardised mortality" → top_n("MORT_GEOGRAPHY", "age_standardised_rate_per_100000", filters={"category": "Statistical Area Level 3 (SA3)", "sex": "Persons", "YEAR": "2023"}, n=10)

Read the full file on GitHub · 59 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 10d ago First seen · 59 lines · 55 tokens per session scan A 43dc6f4a7488

Subscribe to this mod's changes

aihw-mcp-expert is an agent published in the GitHub repository Bigred97/aihw-mcp (0 stars, last pushed 25d ago), licensed MIT. It adds 55 tokens to every session and 1,232 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other agents, from other repositories

abs-mcp-expert

Use when the user asks about Australian Bureau of Statistics data — labour force, CPI inflation, wages, GDP, building approvals, population estimates, housing finance, job vacancies. Translates plain-English questions into abs-mcp tool calls.

Bigred97/abs-mcp · 52 tokens

timps_network_medic

Diagnose network problems: ping internet/Cloudflare, DNS resolution, WiFi signal, traceroute, open ports. Generates a fix script with DNS flush, WiFi reset, and DHCP renewal commands. Use the timpsnetworkmedic MCP tool to perform this task. Do not answer directly — delegate to this sub-agent.

Sandeeprdy1729/timps-swarm · 74 tokens

timps_privacy_cleaner

Privacy audit: count cookies per browser (Chrome, Firefox, Edge, Brave), list macOS app permissions (camera, mic, location, contacts). Returns a cleanup manifest — no data is deleted until user reviews. Use the timpsprivacycleaner MCP tool to perform this task. Do not answer directly — delegate to this sub-agent.

Sandeeprdy1729/timps-swarm · 78 tokens

timps_log_interpreter

Read crash logs and system logs, extract stack traces, and explain each crash in plain English. Classifies as app bug / OS bug / hardware / user error. Pass a log file path to analyse a specific log. Use the timpsloginterpreter MCP tool to perform this task. Do not answer directly — delegate to this sub-agent.

Sandeeprdy1729/timps-swarm · 77 tokens

Demonstrate

Agent for demonstrating VS Code features.

microsoft/vscode · 10 tokens

playwright-test-generator

Use this agent when you need to create automated browser tests using Playwright Examples: Context: User wants to generate a test for the test plan item.

microsoft/playwright · 151 tokens