nbu_exchange_rates

Pack: nbu-ua · Endpoint: https://gateway.pipeworx.io/nbu-ua/mcp

Official NBU exchange rates for ALL currencies on a single day (the rate the National Bank of Ukraine sets daily). Returns one record per currency: {r030 (numeric currency code), txt (Ukrainian name), rate (UAH per 1 unit of the currency), cc (ISO-4217 code, e.g. USD/EUR/PLN), exchangedate (DD.MM.YYYY)}. Omit date for today’s rates.

Parameters

NameTypeRequiredDescription
datestringnoDay to fetch, format YYYYMMDD, e.g. “20240115”. Omit for the latest/today.

Example call

Arguments

{
  "date": "20240115"
}

curl

curl -X POST https://gateway.pipeworx.io/nbu-ua/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"nbu_exchange_rates","arguments":{"date":"20240115"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('nbu_exchange_rates', {
  "date": "20240115"
});

More examples

{}

Connect

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

{
  "mcpServers": {
    "nbu-ua": {
      "url": "https://gateway.pipeworx.io/nbu-ua/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build August 18, 2026