sarb_exchange_rates

Pack: sarb-za · Endpoint: https://gateway.pipeworx.io/sarb-za/mcp

Selected South African Rand exchange rates. frequency=“daily” (default) returns latest daily rates (Rand per USD, GBP, Euro, etc.). frequency=“monthly” returns latest monthly figures including the nominal and real effective exchange rate indices. Each item includes a TimeseriesCode usable with the sarb_timeseries tool.

Parameters

NameTypeRequiredDescription
frequencystringnodaily (default) or monthly.

Example call

Arguments

{
  "frequency": "daily"
}

curl

curl -X POST https://gateway.pipeworx.io/sarb-za/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"sarb_exchange_rates","arguments":{"frequency":"daily"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('sarb_exchange_rates', {
  "frequency": "daily"
});

More examples

{
  "frequency": "monthly"
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "sarb-za": {
      "url": "https://gateway.pipeworx.io/sarb-za/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build August 18, 2026