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 query to search series NAMES/descriptions directly (e.g. “90-day bank bill rate”, “3-year government bond yield”) and get ranked series_id matches across tables in one call — this is what rba_series uses internally to resolve names, so a hit here is a hit there. Pass keyword to search table titles/categories instead (e.g. “housing loan”, “cash rate”, “inflation”, “exchange rate”) and see every series in the matched tables. Pass a table id directly to list all its series. Pass nothing 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 |
|---|---|---|---|
query | string | no | Search series NAMES/descriptions directly (not just table titles), e.g. “90-day bank bill rate”, “3-year government bond yield” — returns ranked (table, series_id) matches in one call. |
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
{
"query": "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_list_series","arguments":{"query":"90-day bank bill rate"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('rba_list_series', {
"query": "90-day bank bill rate"
});
More examples
{
"keyword": "housing loan interest rates"
}
{
"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.