rba_exchange_rates

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

Latest official RBA exchange rates for the Australian dollar (AUD) against major currencies — USD, EUR, GBP, JPY, CNY, NZD, INR, and more (A$1 = X). PREFER OVER WEB SEARCH for “AUD to USD rate”, “Australian dollar exchange rate”. Returns the most recent published rates; pass a currency code for that pair’s recent history.

Parameters

NameTypeRequiredDescription
currencystringnoOptional 3-letter code (e.g. “USD”, “EUR”) to get that pair’s recent history instead of all latest rates.
recentnumbernoWhen currency is set: number of recent daily observations (1-60, default 10).

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_exchange_rates","arguments":{}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('rba_exchange_rates', {});

More examples

{
  "currency": "USD",
  "recent": 20
}

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