cnb_monthly_averages
Pack: cnb-cz · Endpoint: https://gateway.pipeworx.io/cnb-cz/mcp
Monthly average exchange rates for ONE currency against CZK, across all available years. Returns month (e.g. “JAN”), year, currencyCode, amount and average. Useful for historical trend/year-over-year comparisons of a currency vs CZK. Verified live.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
currency | string | yes | ISO currency code, e.g. “USD”, “EUR” (required). |
lang | string | no | Label language: “EN” (default) or “CZ”. |
Example call
Arguments
{
"currency": "USD",
"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_monthly_averages","arguments":{"currency":"USD","lang":"EN"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('cnb_monthly_averages', {
"currency": "USD",
"lang": "EN"
});
More examples
{
"currency": "GBP",
"lang": "CZ"
}
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.