cnb_exchange_rates_currency_month
Pack: cnb-cz · Endpoint: https://gateway.pipeworx.io/cnb-cz/mcp
Daily ČNB exchange rates for ONE currency across a whole month — a per-currency time series against CZK. Returns currencyCode, amount, validFor (YYYY-MM-DD) and rate for each working day in the month. Use this to chart or compare a single currency over time. Verified live.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
currency | string | yes | ISO currency code, e.g. “USD”, “EUR”, “GBP” (required). |
yearMonth | string | no | Month in YYYY-MM, e.g. “2026-05”. Omit for the current month. |
lang | string | no | Label language: “EN” (default) or “CZ”. |
Example call
Arguments
{
"currency": "USD",
"yearMonth": "2026-05",
"lang": "EN"
}
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_exchange_rates_currency_month","arguments":{"currency":"USD","yearMonth":"2026-05","lang":"EN"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('cnb_exchange_rates_currency_month', {
"currency": "USD",
"yearMonth": "2026-05",
"lang": "EN"
});
More examples
{
"currency": "EUR"
}
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.