hnb_currency_rate

Pack: hnb-hr · Endpoint: https://gateway.pipeworx.io/hnb-hr/mcp

HNB exchange rate for ONE foreign currency vs EUR (Croatia is in the eurozone).

Parameters

NameTypeRequiredDescription
currencystringyes3-letter ISO currency code, e.g. “USD”, “GBP”, “CHF”.
datestringnoSingle historical date, YYYY-MM-DD. Ignored if start_date is given.
start_datestringnoTime-series window start, YYYY-MM-DD.
end_datestringnoTime-series window end, YYYY-MM-DD. Required when start_date is given.

Example call

Arguments

{
  "currency": "USD"
}

curl

curl -X POST https://gateway.pipeworx.io/hnb-hr/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"hnb_currency_rate","arguments":{"currency":"USD"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('hnb_currency_rate', {
  "currency": "USD"
});

More examples

{
  "currency": "GBP",
  "start_date": "2026-01-01",
  "end_date": "2026-05-15"
}

Connect

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

{
  "mcpServers": {
    "hnb-hr": {
      "url": "https://gateway.pipeworx.io/hnb-hr/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build August 19, 2026