cnb_pribor

Pack: cnb-cz · Endpoint: https://gateway.pipeworx.io/cnb-cz/mcp

PRIBOR — the Prague Interbank Offered Rate (CZK money-market reference rates) for a given day. Returns one entry per tenor (period: ONE_DAY, ONE_WEEK, ONE_MONTH, THREE_MONTH, SIX_MONTH, ONE_YEAR, etc.) with the pribor rate in percent. Omit date for the latest. Verified live.

Parameters

NameTypeRequiredDescription
datestringnoDay in YYYY-MM-DD, e.g. “2026-05-27”. Omit for the latest. Weekends/holidays return the last valid working-day fixing.

Example call

Arguments

{
  "date": "2026-05-27"
}

curl

curl -X POST https://gateway.pipeworx.io/cnb-cz/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"cnb_pribor","arguments":{"date":"2026-05-27"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('cnb_pribor', {
  "date": "2026-05-27"
});

More examples

{}

Connect

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

{
  "mcpServers": {
    "cnb-cz": {
      "url": "https://gateway.pipeworx.io/cnb-cz/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build August 18, 2026