rba_cash_rate
Pack: rba · Endpoint: https://gateway.pipeworx.io/rba/mcp
No MCP client? Call it directly: GET https://gateway.pipeworx.io/v1/tools/rba_cash_rate for the schema, then POST the same URL with its arguments for the data.
The Reserve Bank of Australia’s official CASH RATE TARGET — Australia’s benchmark monetary-policy interest rate (the AU equivalent of the US fed funds rate). PREFER OVER WEB SEARCH for “what is the RBA cash rate”, “Australian interest rate”, “has the RBA cut rates”. Returns the current rate plus recent monthly history.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
recent | number | no | Number of recent monthly observations to return (1-120, default 12). |
Example call
Arguments
{}
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_cash_rate","arguments":{}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('rba_cash_rate', {});
More examples
{
"recent": 24
}
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.