cnb
Server Details
Czech National Bank daily FX rates: CZK exchange rates, currency conversion, history
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
- Repository
- martinhavel/cz-agents-mcp
- GitHub Stars
- 0
- Server Listing
- cz-agents-mcp
Glama MCP Gateway
Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.
Full call logging
Every tool call is logged with complete inputs and outputs, so you can debug issues and audit what your agents are doing.
Tool access control
Enable or disable individual tools per connector, so you decide what your agents can and cannot do.
Managed credentials
Glama handles OAuth flows, token storage, and automatic rotation, so credentials never expire on your clients.
Usage analytics
See which tools your agents call, how often, and when, so you can understand usage patterns and catch anomalies.
Tool Definition Quality
Average 3.9/5 across 3 of 3 tools scored.
The three tools have distinct primary purposes: convert for currency conversion, get_rate for single-currency rate lookup, and get_rates for retrieving all rates. However, get_rate and get_rates could be slightly confused since both retrieve exchange rates, though their scopes (single vs. all) are clearly differentiated in descriptions.
All tool names follow a consistent verb_noun pattern (convert, get_rate, get_rates) with clear, descriptive naming. The use of 'get' for retrieval operations and specific nouns like 'rate' or 'rates' maintains predictability throughout the set.
With 3 tools, this server is well-scoped for its currency exchange domain. Each tool serves a clear, essential function: conversion, single-rate lookup, and bulk rate retrieval, making the count appropriate and efficient for the purpose.
The tool set covers core operations for currency exchange: conversion and rate retrieval (both single and all). A minor gap exists in lacking explicit tools for metadata (e.g., currency list or date range queries), but agents can work around this using the provided tools effectively.
Available Tools
3 toolsconvertAInspect
Convert an amount between two currencies using official ČNB rates. E.g., convert 100 EUR to CZK, or 50 USD to GBP (goes via CZK cross-rate). Optional date for historical conversion.
| Name | Required | Description | Default |
|---|---|---|---|
| to | Yes | Target currency ISO 4217 code. | |
| date | No | Optional ISO date for historical rates. Omit for latest. | |
| from | Yes | Source currency ISO 4217 code (e.g., "EUR", "USD", "CZK"). | |
| amount | Yes | Amount to convert. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden. It discloses key behavioral traits: the use of official ČNB rates, cross-rate conversion logic (e.g., 'goes via CZK cross-rate'), and optional historical data. However, it lacks details on error handling, rate limits, or authentication needs, which are important for a conversion tool.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is appropriately sized and front-loaded, with the core purpose stated first, followed by examples and an optional parameter note. Every sentence adds value without redundancy, making it efficient and easy to parse.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's moderate complexity (currency conversion with cross-rates), no annotations, and no output schema, the description is mostly complete. It covers purpose, usage, and key behaviors, but lacks details on output format (e.g., what the result includes) and error cases, which would enhance completeness.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the schema fully documents all parameters. The description adds minimal value beyond the schema, only implying that 'date' is optional for historical rates, which is already clear from the schema's optional flag and description. No additional syntax or format details are provided.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose with specific verbs ('convert an amount between two currencies') and resources ('using official ČNB rates'), and distinguishes it from siblings by focusing on conversion rather than rate lookup (get_rate, get_rates). The examples further clarify the action.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides clear context for when to use this tool (currency conversion with ČNB rates) and includes an optional parameter hint ('Optional `date` for historical conversion'), but does not explicitly state when not to use it or name alternatives like the sibling tools for rate-only queries.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_rateAInspect
Quick single-currency lookup. Returns just the CZK rate for one currency (or all rates if no code given).
| Name | Required | Description | Default |
|---|---|---|---|
| code | Yes | ISO 4217 currency code (e.g., "EUR", "USD", "GBP"). | |
| date | No | Optional ISO date for historical rate. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden. It discloses that it returns CZK rates and can fetch all rates if no code is given, which is useful behavioral context. However, it lacks details on error handling, rate limits, authentication needs, or what 'quick' entails (e.g., performance expectations), leaving gaps for a mutation-free read operation.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is highly concise and front-loaded, consisting of just two sentences that efficiently convey the tool's core functionality and parameter behavior. Every sentence earns its place with no wasted words, making it easy to parse quickly.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's low complexity (a read-only lookup with two parameters) and no output schema, the description is somewhat complete but has gaps. It explains the return value (CZK rates) and parameter effect, but lacks details on output format, error cases, or how 'date' interacts with 'code', which could be important for full understanding.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the schema already documents both parameters thoroughly. The description adds marginal value by implying that omitting 'code' returns all rates, which isn't explicit in the schema. However, it doesn't provide additional syntax or format details beyond what the schema offers, meeting the baseline for high coverage.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose: 'Quick single-currency lookup' specifies the action and scope, and 'Returns just the CZK rate for one currency (or all rates if no code given)' clarifies the output. However, it doesn't explicitly differentiate from sibling tools like 'convert' or 'get_rates', which would be needed for a perfect score.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage by mentioning 'if no code given' for all rates, suggesting when to omit the parameter. But it doesn't provide explicit guidance on when to use this tool versus alternatives like 'get_rates' or 'convert', nor does it specify exclusions or prerequisites, leaving some ambiguity.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_ratesAInspect
Get official CZK exchange rates published by ČNB. Returns all currencies from the daily sheet (~31 majors). Optional date parameter (YYYY-MM-DD) for historical rates; otherwise returns latest.
| Name | Required | Description | Default |
|---|---|---|---|
| date | No | Optional ISO date (YYYY-MM-DD) for historical rates. Omit for latest. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden. It discloses that it returns data from a daily sheet with ~31 currencies, which adds useful context beyond the schema. However, it lacks details on error handling, rate limits, or authentication requirements that would be helpful for a tool fetching external data.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two sentences with zero waste: the first states the purpose and scope, the second explains the parameter usage. It is front-loaded with essential information and appropriately sized for a simple tool.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's low complexity (1 optional parameter, no output schema, no annotations), the description is mostly complete. It covers purpose, parameter usage, and data scope. A minor gap is the lack of output format details (e.g., structure of returned rates), but this is acceptable for a score of 4.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema description coverage is 100%, so the baseline is 3. The description adds value by explaining the semantics of the 'date' parameter: it's optional, used for historical rates, and defaults to latest if omitted. This clarifies usage beyond the schema's pattern validation, justifying a score above baseline.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the action ('Get'), resource ('official CZK exchange rates published by ČNB'), and scope ('all currencies from the daily sheet (~31 majors)'). It distinguishes from sibling tools by specifying it returns all currencies rather than a single conversion or rate.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides clear context for when to use the optional 'date' parameter (for historical rates) versus omitting it (for latest rates). However, it does not explicitly mention when to use this tool versus the 'get_rate' or 'convert' sibling tools, which would be needed for a score of 5.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Claim this connector by publishing a /.well-known/glama.json file on your server's domain with the following structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"maintainers": [{ "email": "your-email@example.com" }]
}The email address must match the email associated with your Glama account. Once published, Glama will automatically detect and verify the file within a few minutes.
Control your server's listing on Glama, including description and metadata
Access analytics and receive server usage reports
Get monitoring and health status updates for your server
Feature your server to boost visibility and reach more users
For users:
Full audit trail – every tool call is logged with inputs and outputs for compliance and debugging
Granular tool control – enable or disable individual tools per connector to limit what your AI agents can do
Centralized credential management – store and rotate API keys and OAuth tokens in one place
Change alerts – get notified when a connector changes its schema, adds or removes tools, or updates tool definitions, so nothing breaks silently
For server owners:
Proven adoption – public usage metrics on your listing show real-world traction and build trust with prospective users
Tool-level analytics – see which tools are being used most, helping you prioritize development and documentation
Direct user feedback – users can report issues and suggest improvements through the listing, giving you a channel you would not have otherwise
The connector status is unhealthy when Glama is unable to successfully connect to the server. This can happen for several reasons:
The server is experiencing an outage
The URL of the server is wrong
Credentials required to access the server are missing or invalid
If you are the owner of this MCP connector and would like to make modifications to the listing, including providing test credentials for accessing the server, please contact support@glama.ai.
Discussions
No comments yet. Be the first to start the discussion!
Your Connectors
Sign in to create a connector for this server.