Rba MCP server
Query the RBA in plain English — cash rate, FX, lending and deposit rates.
0 stars
Reviews
Write oneNobody has reviewed Rba yet.
If you have run it, two minutes of your experience saves the next person an afternoon.
Rba tools (6)
write = sends, deletes, buys or postsRead from the package source without running it. The installed server may list more.
describe_tableDescribe an RBA F-table's series, units, and frequency.
get_datalatestReturn the most recent observation for each series in an RBA F-table.
list_curatedList every RBA table ID with hand-curated plain-English support.
release_calendarUpcoming RBA publication schedule (data + statements + events).
search_tablesFuzzy-search RBA F-tables by name and topic.
Public scan report
scanner v0.1.9 · 2026-09-23 · same rubric, same numbers if you re-run it
- Code scan30 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 15 days ago15/15
- Maintainer identitynamespace and repository owner differ; GitHub account older than a year; website matches verified namespace7/10
What the publisher says
From the Rba repository's README, as published. We do not edit it. Read it on GitHub
rba-mcp
mcp-name: io.ausdata/rba-mcp
Ask Claude about Australian interest rates, exchange rates, and lending rates and get real, current numbers — not "I don't have access to that data." This MCP server gives Claude (and other MCP clients like Cursor) live access to the Reserve Bank of Australia's statistical tables, with curated mappings for the most-asked indicators.
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).
Companion to abs-mcp (ABS macro stats), ato-mcp (ATO tax + ACNC charity data), and au-weather-mcp (Australian weather via Open-Meteo + BOM) — together the four cover the most-asked Australian official data.
What you can ask
Once installed, your LLM can answer questions like:
Every answer comes with the period, units (Per cent per annum, USD per AUD, etc.), the publication date, and a link back to the RBA source. The MCP wraps RBA's CSV statistical tables and exposes them through 5 plain-English tools.
Install
# After publish:
uvx --upgrade rba-mcp
# Local dev:
uv pip install -e .Claude Desktop
Add to ~/Library/Application Support/Claude/claudedesktopconfig.json:
{
"mcpServers": {
"rba": {
"command": "uvx",
"args": ["--upgrade", "rba-mcp"]
}
}
}Why --upgrade? uvx rba-mcp (without the flag) uses whatever wheel is cached and never adopts new PyPI releases on its own — Claude Desktop's MCP child process keeps running the same wheel until you fully quit the app and refresh the cache by hand. --upgrade makes uvx check PyPI on each launch and pull a newer release if one exists. Recommended for everyone except offline-first / pinned-version workflows. To verify which version is currently serving you, look at the server_version field on any DataResponse (added in 0.1.5).
If you also have abs-mcp installed, both servers run side-by-side. Claude disambiguates with the server prefix (rba:getdata vs abs:getdata).
For local dev (pre-PyPI):
{
"mcpServers": {
"rba": {
"command": "uv",
"args": ["run", "--directory", "/absolute/path/to/rba-mcp", "rba-mcp"]
}
}
}Cursor
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 rba-mcp -- uvx rba-mcp
Rba: common questions
- Is Rba MCP server safe?
- Yes, by our scan: it is graded A (91/100). Read the Rba safety report
- How do I install Rba?
- It runs on your machine. Copy the Claude Code, Claude Desktop or Cursor config from the install section.
- Does Rba need an API key?
- Not as far as the registry entry and our scan can tell: no credentials are declared or required.
- Is Rba maintained?
- The last commit was 16 days ago (2026-09-08). The latest release is v0.8.11.