rba_series
Pack: rba · Endpoint: https://gateway.pipeworx.io/rba/mcp
Fetch any RBA statistical series — pass a NAME or description in series (e.g. “90-day bank bill rate”, “3-year government bond yield”) and it resolves the table + series id for you by fuzzy-matching series titles/descriptions across the RBA catalog (the interest-rate and bond-yield tables are searched first), the same way rba_list_series does. Returns recent observations plus resolved_from/resolved_to showing what the name resolved to, or a candidates list if the name is ambiguous — never guesses a made-up id. Or pass table+series_id directly if you already know them exactly (CPI is g1, monetary aggregates d3, cash rate target is FIRMMCRT in f1.1, etc.). Use rba_cash_rate / rba_exchange_rates for those specific common series.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
series | string | no | A series NAME/description to resolve (e.g. “90-day bank bill rate”, “3-year government bond yield”) OR an exact series id (e.g. “FIRMMBAB90”). Preferred over table+series_id — resolves the id for you and returns resolved_from/resolved_to (or candidates if ambiguous). |
table | string | no | RBA table id, e.g. “f1.1” (money market), “f2.1” (bond yields), “f11.1” (FX), “g1” (CPI), “d3” (monetary aggregates). Optional: narrows series resolution to this table; required alongside series_id for the exact legacy path. |
series_id | string | no | Legacy: exact RBA series id within table, e.g. “FIRMMCRT” (cash rate target), “FXRUSD” (A$/USD). Prefer series, which accepts a name and resolves this for you. |
recent | number | no | Recent observations to return (1-120, default 12). |
Example call
Arguments
{
"series": "90-day bank bill rate"
}
curl
curl -X POST https://gateway.pipeworx.io/rba/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"rba_series","arguments":{"series":"90-day bank bill rate"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('rba_series', {
"series": "90-day bank bill rate"
});
More examples
{
"series": "3-year government bond yield"
}
{
"table": "d3",
"series_id": "DMAM3N",
"recent": 36
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"rba": {
"url": "https://gateway.pipeworx.io/rba/mcp"
}
}
}
See Getting Started for client-specific install steps.