rba_series

Pack: rba · Endpoint: https://gateway.pipeworx.io/rba/mcp

Fetch any RBA statistical series by table id + series id — escape hatch for the full RBA statistical-tables catalog (CPI is g1, monetary aggregates d3, etc.). Returns recent observations. Use rba_cash_rate / rba_exchange_rates for the common ones. Browse tables at rba.gov.au/statistics/tables.

Parameters

NameTypeRequiredDescription
tablestringyesRBA table id, e.g. “f1.1” (money market), “f11.1” (FX), “g1” (CPI), “d3” (monetary aggregates).
series_idstringyesRBA series id within the table, e.g. “FIRMMCRT” (cash rate target), “FXRUSD” (A$/USD).
recentnumbernoRecent observations to return (1-120, default 12).

Example call

Arguments

{
  "table": "g1",
  "series_id": "ACPI"
}

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":{"table":"g1","series_id":"ACPI"}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('rba_series', {
  "table": "g1",
  "series_id": "ACPI"
});

More examples

{
  "table": "d3",
  "series_id": "DMNRNON",
  "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.

Regenerated from source · build August 3, 2026