rba_list_series
Pack: rba · Endpoint: https://gateway.pipeworx.io/rba/mcp
Directory of the 71 RBA statistical tables and the series inside them — the discovery tool for rba_series. Pass a keyword (matched against table titles/categories, e.g. “housing loan”, “cash rate”, “inflation”, “exchange rate”) to find the right table and see every series_id, name and units inside it in one call — no failing lookup needed. Pass a table id directly to list all its series. Pass neither to browse every table by category. NOT the same as list_tables (a different pack, Swedish population data) — this is rba_ prefixed.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
keyword | string | no | Optional keyword to search table titles/categories and, for matched tables, their series names — e.g. “housing loan”, “cash rate”, “CPI”, “exchange rate”, “credit card”. |
table | string | no | Optional RBA table id to list every series inside it directly, e.g. “f6” (housing lending rates). |
Example call
Arguments
{
"keyword": "housing loan interest rates"
}
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_list_series","arguments":{"keyword":"housing loan interest rates"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('rba_list_series', {
"keyword": "housing loan interest rates"
});
More examples
{
"table": "f6"
}
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.