nbk-mcp
Click on "Deploy Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@nbk-mcpConvert 100 dollars to tenge"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
@theyahia/nbk-mcp
Курсы валют Национального Банка Казахстана. 5 инструментов. Без авторизации.
MCP-сервер для получения курсов валют НБК, конвертации и отслеживания динамики. Данные берутся напрямую из официального RSS-канала nationalbank.kz.
Quick Start
Claude Desktop
Добавьте в claude_desktop_config.json:
{
"mcpServers": {
"nbk": {
"command": "npx",
"args": ["-y", "@theyahia/nbk-mcp"]
}
}
}Claude Code
claude mcp add nbk -- npx -y @theyahia/nbk-mcpCursor
Добавьте в .cursor/mcp.json:
{
"mcpServers": {
"nbk": {
"command": "npx",
"args": ["-y", "@theyahia/nbk-mcp"]
}
}
}Related MCP server: TCMB MCP
Инструменты
Инструмент | Описание | Параметры |
| Все текущие курсы валют НБК | нет |
| Курс конкретной валюты |
|
| Курсы на определённую дату |
|
| Конвертация между валютами |
|
| Динамика курса (рост/падение) |
|
Примеры
"Какой курс доллара к тенге?"
"Переведи 100000 тенге в рубли"
"Покажи все курсы валют на сегодня"
"Какой был курс евро 01.01.2025?"
"Доллар растёт или падает?"
HTTP-режим
npx @theyahia/nbk-mcp --http
# или
HTTP_PORT=8080 npx @theyahia/nbk-mcp --httpЭндпоинты:
POST /mcp— Streamable HTTP transportGET /health— проверка здоровья
Часть серии Russian & CIS API MCP
Смотрите также: russian-mcp
Лицензия
MIT
Available Tools
5 toolsconvert_currencyA
Convert between currencies using NBK rates. One side must be KZT.
| Name | Required | Description | Default |
|---|---|---|---|
| date | No | Date in DD.MM.YYYY format (optional) | |
| amount | Yes | Amount to convert | |
| to_currency | No | Target currency code (default: KZT) | KZT |
| from_currency | Yes | Source currency code, e.g. USD, KZT |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the transparency burden. It discloses the important constraint 'One side must be KZT' and the rate source, but does not mention behavior on invalid inputs, output format, or the role of the date parameter. It is adequate but not rich.
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?
One sentence of ten words, front-loaded with purpose and constraint. No unnecessary information; every part earns its place.
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 4-parameter schema with full coverage, the description provides the essential purpose and key constraint. It does not explain the return value, but for a straightforward conversion tool this is acceptable. It is reasonably complete for its complexity.
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 coverage is 100%, so parameters are documented. The description adds semantic value by stating the critical business rule that one side must be KZT, which is not evident from the schema alone.
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 converts between currencies using NBK rates, with a specific verb and resource. It also highlights the key constraint that one side must be KZT, which distinguishes it from sibling rate-query tools.
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 use for conversion, but does not explicitly contrast with siblings like get_currency_rate or provide when-not-to-use guidance. The verb 'convert' suggests usage, but it is not explicit.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_all_ratesA
Get all current currency exchange rates from the National Bank of Kazakhstan
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations present, the description bears full responsibility for behavioral disclosure. It only states the purpose and source; it does not mention response structure, base currency, rate type (buy/sell), or any caching/authorization behavior. The agent is left to guess the output format.
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 a single, front-loaded sentence that conveys exactly what the tool does and from where. No filler words, and it is appropriately sized for the tool's simplicity.
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?
For a zero-parameter, no-output-schema tool, the description is reasonably complete: it names the specific source and the scope ('all current'). The main gap is the lack of output structure detail, but given the low complexity, this is a minor omission.
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 tool has zero parameters, so the schema already covers everything trivially. The baseline for zero-parameter tools is 4, and the description adds no parameter-specific meaning because none are needed.
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 function with a specific verb 'Get', a specific resource 'all current currency exchange rates', and a source 'National Bank of Kazakhstan'. It naturally distinguishes itself from siblings like get_currency_rate (single rate) and get_historical_rates (time-series).
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 phrase 'all current' implies the tool should be used when a complete snapshot of today's rates is needed, but the description does not explicitly state when to prefer it over siblings or provide exclusions. Context from sibling names helps, but the description itself lacks direct usage guidance.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_currency_rateB
Get the exchange rate for a specific currency from the National Bank of Kazakhstan
| Name | Required | Description | Default |
|---|---|---|---|
| date | No | Date in DD.MM.YYYY format (optional, defaults to today) | |
| currency_code | Yes | Currency code, e.g. USD, EUR, RUB |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of behavioral disclosure. It states the data source but does not mention what the tool returns (e.g., numeric value), how it handles invalid currencies, whether the date defaults to today, or any rate limits. This lack of detail leaves the agent uncertain about expected behavior.
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 a single, concise sentence with no filler or redundancy. It is front-loaded with the primary action and resource, making it easily scannable.
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?
The tool is simple with only two parameters and no output schema, so the description is mostly adequate. However, the lack of guidance on when to use this tool versus its siblings, and the absence of information about return format or error behavior, leaves some gaps for an agent trying to select and invoke it correctly.
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 input schema provides complete descriptions for both parameters (currency_code and date), achieving 100% schema description coverage. The description does not add any parameter semantics beyond the schema, so the baseline of 3 is appropriate.
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') and the resource ('exchange rate for a specific currency from the National Bank of Kazakhstan'). It distinguishes from sibling tools like get_all_rates by emphasizing 'specific currency', making the purpose unambiguous.
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?
No guidance is provided on when to use this tool versus alternatives like get_all_rates, get_historical_rates, or convert_currency. There is no mention of prerequisites, such as needing a rate for a particular date or when to prefer this over get_rate_dynamics.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_historical_ratesA
Get all currency exchange rates for a specific date from the National Bank of Kazakhstan
| Name | Required | Description | Default |
|---|---|---|---|
| date | Yes | Date in DD.MM.YYYY format |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description must carry the full burden of behavioral disclosure. While it states the source and action, it does not explain important behaviors such as date format handling (beyond schema), behavior on non-business days, the structure of the response, or any potential limitations. This is minimal disclosure that adds little beyond the basic function.
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 a single, well-structured sentence that immediately conveys the tool's purpose. Every word serves a function, and there is no redundant information or filler.
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 (one parameter, no output schema, no annotations), the description provides sufficient context to understand its purpose and when to use it. It accurately conveys the input requirement and the resource returned, though it omits specifics about the return format, which is a minor gap given the simple nature.
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 input schema covers 100% of the parameter (date) with a clear description of the expected format (DD.MM.YYYY). The tool description adds no additional semantic detail beyond the schema, so the baseline 3 is appropriate—the schema does the heavy lifting.
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 function: retrieving all currency exchange rates for a specific date from the National Bank of Kazakhstan. It uses a specific verb ('Get') and identifies both the resource (currency exchange rates) and the scope (specific date, specific source), which distinguishes it from siblings like get_currency_rate (single currency) and get_rate_dynamics (time series).
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 clearly implies usage context: use this when you need all exchange rates for a particular date. It doesn't explicitly name alternatives or exclusions, but the phrase 'for a specific date' establishes a clear use case that differentiates from other tools like get_all_rates (likely current rates) or get_currency_rate.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_rate_dynamicsA
Get the current rate with change direction for a currency (shows if rate went UP or DOWN)
| Name | Required | Description | Default |
|---|---|---|---|
| currency_code | Yes | Currency code, e.g. USD, EUR, RUB |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full burden. It discloses the core behavior of providing a current rate and a UP/DOWN direction indicator, but does not specify the output structure, how direction is calculated (e.g., vs previous close), or any edge cases like unavailable rates. This is acceptable but not rich.
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 a single, front-loaded sentence that conveys the core functionality without any redundant or extraneous words. It earns a 5 for efficiency.
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?
For a simple single-parameter read-only tool, the description covers the essential purpose and distinctive feature. However, the lack of any output schema and the absence of details on the return format slightly weaken completeness for an AI agent, leaving a 4 rather than a 5.
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 input schema already fully describes currency_code with examples (USD, EUR, RUB), achieving 100% coverage. The description adds no additional parameter-specific context beyond restating that it applies to a currency, so it earns the baseline score of 3.
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 'Get the current rate with change direction,' identifying the specific verb, resource, and unique scope (direction) that distinguishes this from sibling tools like get_currency_rate and get_all_rates. The addition of 'shows if rate went UP or DOWN' reinforces the distinguishing purpose.
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 use when the caller needs direction information, but it does not explicitly mention alternatives or state when not to use this tool. There is no comparison to get_currency_rate for simple rate retrieval, so the usage context is only implicit, not clearly delineated.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections.
5 tool updates
v1.0.0- First observed
convert_currency - First observed
get_all_rates - First observed
get_currency_rate - First observed
get_historical_rates - First observed
get_rate_dynamics
TDQS
Scored across 5 tools
Tools are mostly distinct: get_all_rates, get_currency_rate, get_historical_rates, convert_currency, and get_rate_dynamics each serve a clear purpose. Slight overlap exists between get_currency_rate and get_rate_dynamics since both return current rates, but the latter adds change direction, making the distinction clear.
All tool names follow a verb_noun pattern (get_ or convert_), using snake_case consistently. Minor deviation is the use of 'convert' instead of 'get', but it is still a clear verb and fits the pattern.
With 5 tools, the server is well-scoped for a currency rate service. Each tool covers a distinct aspect (all rates, specific rate, historical, conversion, dynamics) without unnecessary bloat.
The tool set covers the core lifecycle of accessing exchange rates: current, specific currency, historical, conversion, and dynamics. No significant gaps are apparent for the stated purpose of NBK rates.
Maintenance
Related MCP Connectors
Convert currencies, get FX rates, and query historical ECB exchange rate data.
Fetch latest and historical currency exchange rates from Frankfurter. Convert amounts between curr…
Official exchange rates from central banks: latest & historical rates plus currency conversion.
Currency conversion + exchange rates: free convert/rates, paid historical & trend analytics.
Related MCP Servers
- AlicenseAqualityDmaintenanceProvides access to currency exchange rates and conversion tools using the Frankfurter API, including latest rates, historical data, and time series from sources like the European Central Bank.5MIT
- AlicenseBqualityFmaintenanceProvides access to Turkish Central Bank (TCMB) exchange rates with current and historical data since 1996, currency conversion, rate history statistics, and multi-currency comparisons with smart caching.61MIT
- FlicenseNot gradedqualityDmaintenanceProvides real-time and historical foreign exchange rates for 31+ currencies, enabling currency conversion, historical rate lookups, and time series analysis using data from the Frankfurter API.-
- AlicenseNot gradedqualityCmaintenanceEnables real-time currency exchange rate lookup, conversion, historical rates, and currency catalog using the free Frankfurter API, no API key required.1 npmISC