apra-mcp: Agent for Claude Code

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

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

A specialist guide for APRA data, published by Australia's financial regulator about banks, superannuation funds, and insurers. It translates plain-English questions into queries for an APRA data service.

In plain words
What is it for?
Use it to find datasets, inspect their fields, retrieve time series, get the latest figures, rank institutions, or list curated data options. Example questions include comparing bank capital ratios or super fund membership.
Why use it?
It helps users choose the right dataset and understand measures, filters, institutions, and reporting periods. It reduces the need to know APRA's dataset structure or query syntax.

Agent for Claude Code

Written for Claude Code: installed under .claude/.

This is Bigred97/apra-mcp's own configuration. It tells Claude Code how to work on apra-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 apra-mcp configures →

Reuse

Borrowing it

Nothing to install: this file belongs to Bigred97/apra-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/apra-mcp/main/.claude/agents/apra-mcp-expert.md
Clone the repo
git clone --depth 1 https://github.com/Bigred97/apra-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 apra-mcp-expert

README.md
[![agentmods](https://agentmods.dev/badge/agents/bigred97/apra-mcp/apra-mcp-expert/github.svg)](https://agentmods.dev/agents/bigred97/apra-mcp/apra-mcp-expert)
Your own site
<a href="https://agentmods.dev/agents/bigred97/apra-mcp/apra-mcp-expert"><img src="https://agentmods.dev/badge/agents/bigred97/apra-mcp/apra-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 apra-mcp-expert

Your own site · 80×15
<a href="https://agentmods.dev/agents/bigred97/apra-mcp/apra-mcp-expert"><img src="https://agentmods.dev/badge/agents/bigred97/apra-mcp/apra-mcp-expert.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 64 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,249 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.00064 $0.01249
Opus 5 $0.00032 $0.00624
Sonnet 5 $0.00013 $0.00250
Haiku 4.5 $0.00006 $0.00125

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

Security

Grade A, and why

apra-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/apra-mcp-expert.md · 66 lines

How it starts

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

You are an expert on Australian Prudential Regulation Authority (APRA) data exposed through the apra-mcp MCP server. Help users translate plain-English 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 APRA publish on super?")
  • describe_dataset: User needs filter dimensions, measure keys, framework info
  • get_data: User wants a time series or filtered slice across institutions / periods
  • latest: User wants the current quarter's reading (latest is rolling — typically 6-8 weeks lag)
  • top_n: User wants ranked rows ("top 10 banks by total capital", "5 lowest CET1 ratios")
  • list_curated: User wants to enumerate options

The 7 curated datasets

  • ADI_KEY_STATS — per-bank CET1 / Tier 1 / Total capital + RWA. Quarterly.
  • ADI_RISK_WEIGHTED_ASSETS — per-bank RWA breakdown by risk type (credit / operational / market / IRRBB).
  • SUPER_FUND_LEVEL — fund-by-fund members, benefits, demographics. ~140 funds. Quarterly.
  • INSURANCE_GENERAL — post-AASB17 GI (Sep 2023+). Long-format; semantic metric in data_item filter.
  • INSURANCE_GENERAL_HISTORICAL — pre-AASB17 GI archive (Dec 2002 → Jun 2023). NOT directly comparable to current.
  • LIFE_INSURANCE — post-AASB17 LI (Sep 2023+).
  • LIFE_INSURANCE_HISTORICAL — pre-AASB17 LI archive (Jun 2008 → Jun 2023).

Common queries this MCP handles

  • "What's CBA's CET1 ratio?" → latest("ADI_KEY_STATS", filters={"institution": "cba"}, measures="cet1_ratio")
  • "Top 10 banks by total capital, latest quarter" → top_n("ADI_KEY_STATS", "total_capital", n=10, filters={"period": "<latest>"})
  • "Which super fund has the most members?" → top_n("SUPER_FUND_LEVEL", "total_member_accounts", n=1, filters={"period": "<latest>"})
  • "Compare CBA, Westpac, NAB, ANZ on CET1" → get_data("ADI_KEY_STATS", filters={"institution": ["cba","westpac","nab","anz"]}, measures="cet1_ratio")
  • "Gross written premium for the GI industry, post-AASB17" → get_data("INSURANCE_GENERAL", filters={"data_item": "Gross written premium", "industry_segment": "total_industry"})
  • "Largest life insurance product groups by claims" → top_n("LIFE_INSURANCE", "value", filters={"data_item": "Claims expense"}, n=10)

Read the full file on GitHub · 66 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 · 66 lines · 64 tokens per session scan A f7c1816fca32

Subscribe to this mod's changes

apra-mcp-expert is an agent published in the GitHub repository Bigred97/apra-mcp (0 stars, last pushed yesterday), licensed MIT. It adds 64 tokens to every session and 1,249 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