Skip to main content
AllMCPs
BrowseBestCategoriesStackCompareToolsGuidesBlog Log in Submit MCP

Stay in the loop

Get new MCP servers and top picks in your inbox.

AllMCPs

The open directory for discovering and installing Model Context Protocol servers.

Explore

  • Browse servers
  • Best MCP servers
  • Categories
  • MCP clients
  • Agent prompts
  • Stack Builder
  • Compare servers
  • Tags index
  • Submit a server
  • Pricing

Learn

  • Guides hub
  • What is MCP?
  • Install guide
  • Troubleshooting
  • Security
  • Blog
  • Blog RSS

Tools

  • All tools
  • Config generator
  • Config validator
  • MCP playground
  • OpenAPI β†’ MCP
  • Badge generator

For agents

  • API docs
  • Trust & traffic
  • llms.txt β†— (opens in a new tab)
  • Catalog JSON β†— (opens in a new tab)
  • Remote MCP β†— (opens in a new tab)

Company

  • About
  • Contact
  • X (@AllMCPs) β†— (opens in a new tab)
  • GitHub β†— (opens in a new tab)
  • Terms
  • Privacy
AllMCPs VerifiedAllMCPs VerifiedFeatured on Nick LaunchesFeatured on Nick LaunchesLaunch Llama NewsletterLaunch Llama NewsletterVerified DR - allmcps.comVerified DR - allmcps.comFeatured on SaaSGrowFeatured on SaaSGrowFeatured on Twelve ToolsFeatured on Twelve ToolsFeatured on Saaspa.geFeatured on Saaspa.geFeatured on Findly.toolsFeatured on Findly.toolsFeatured on Startup FameFeatured on Startup FameFeatured on LaunchKiwiFeatured on LaunchKiwiFeatured on ScrollLaunchFeatured on ScrollLaunchFeatured on DailyPingsFeatured on DailyPingsFazier badgeFazier badgeFeatured on NewTool.siteFeatured on NewTool.siteFeatured on saasfame.comFeatured on saasfame.comDR Checker - Domain RatingDR Checker - Domain RatingListed on Turbo0Listed on Turbo0Launched on LaunchBoard - Product Launch PlatformLaunched on LaunchBoard - Product Launch PlatformList on SimilarlabsList on Similarlabshttps://codetrendy.comhttps://codetrendy.comListed on DevTool.ioFeatured on BuildlistFeatured on BuildlistAllMCPs VerifiedAllMCPs VerifiedFeatured on Nick LaunchesFeatured on Nick LaunchesLaunch Llama NewsletterLaunch Llama NewsletterVerified DR - allmcps.comVerified DR - allmcps.comFeatured on SaaSGrowFeatured on SaaSGrowFeatured on Twelve ToolsFeatured on Twelve ToolsFeatured on Saaspa.geFeatured on Saaspa.geFeatured on Findly.toolsFeatured on Findly.toolsFeatured on Startup FameFeatured on Startup FameFeatured on LaunchKiwiFeatured on LaunchKiwiFeatured on ScrollLaunchFeatured on ScrollLaunchFeatured on DailyPingsFeatured on DailyPingsFazier badgeFazier badgeFeatured on NewTool.siteFeatured on NewTool.siteFeatured on saasfame.comFeatured on saasfame.comDR Checker - Domain RatingDR Checker - Domain RatingListed on Turbo0Listed on Turbo0Launched on LaunchBoard - Product Launch PlatformLaunched on LaunchBoard - Product Launch PlatformList on SimilarlabsList on Similarlabshttps://codetrendy.comhttps://codetrendy.comListed on DevTool.ioFeatured on BuildlistFeatured on Buildlist
Β© 2026 Jackalope Digital LLC. All rights reserved.
  1. Home
  2. πŸ’° Finance & Fintech
  3. Mcp Cbr Rates
M
Health: Not checked yetWe have not completed a health check for this listing yet.Last checked 8/11/2026, 12:29:52 AM

Mcp Cbr Rates

Enrichment pendingWe haven’t run our AI enrichment pass on this listing yet, so the overview, use cases, and FAQ below may be sparse or missing. We work through the catalog over time β€” check back soon.
View Repository

CBR exchange rates and key rates for Russia. MCP tools for finance agents.

Quick Install

Automated & IDE Setup

Copy the AI prompt to install this server into Claude Code, Cursor, or another agent β€” or use 1-click editor setup below.

Add to CursorAdd to VS Code
Manual Client & Custom JSON ConfigExpand JSON β–Ύ

Install Config Generator

Choose your client
claude_desktop_config.json
{
  "mcpServers": {
    "mcp-cbr-rates": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-cbr-rates"
      ]
    }
  }
}

πŸ’‘ Paste into ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)

Install Directory Badge Claim listing AlternativesπŸ’° More in Finance & Fintech

Documentation Overview

mcp-cbr-rates

A Model Context Protocol (MCP) server that exposes public Bank of Russia (Π¦Π΅Π½Ρ‚Ρ€Π°Π»ΡŒΠ½Ρ‹ΠΉ Π±Π°Π½ΠΊ Π Π€, CBR) data β€” currency quotes, key rate, inflation and a compact macro snapshot β€” to AI agents.

License: MIT PyPI GitHub release Tests Coverage Python MCP Glama

mcp-cbr-rates MCP server

mcp-cbr-rates is part of the atomno family of MCP servers focused on the Russian fintech ecosystem. It is fully open-source, requires no API keys, and is built on top of the official public CBR endpoints.


Features

  • Five high-quality MCP tools, each with a strict Pydantic schema: get_rate, history_rates, key_rate, inflation, statistics.
  • Built-in TTL (Time-To-Live) cache: 1 hour for daily quotes, 24 hours for historical series, to be polite to the source.
  • Async httpx transport with automatic retries on 5xx errors.
  • Safe XML parsing via defusedxml.
  • 50+ unit tests with respx-mocked HTTP, β‰₯80 % coverage.
  • No secrets, no telemetry, no third-party trackers.

Quick start

Install from PyPI (recommended)

bash
pipx install atomno-mcp-cbr-rates
atomno-mcp-cbr-rates  # starts the MCP server over stdio

Or with uv:

bash
uv tool install atomno-mcp-cbr-rates

Install from source

bash
git clone https://github.com/atomno-mcp/mcp-cbr-rates.git
cd mcp-cbr-rates
pip install -e .
atomno-mcp-cbr-rates  # starts the MCP server over stdio

Use with Cursor

Add the following to .cursor/mcp.json (or your global ~/.cursor/mcp.json):

config.json
{
  "mcpServers": {
    "cbr-rates": {
      "command": "atomno-mcp-cbr-rates"
    }
  }
}

Use with Claude Desktop

Add to claude_desktop_config.json:

config.json
{
  "mcpServers": {
    "cbr-rates": {
      "command": "atomno-mcp-cbr-rates"
    }
  }
}

On Windows the config lives at %APPDATA%\Claude\claude_desktop_config.json; on macOS at ~/Library/Application Support/Claude/claude_desktop_config.json.

Use with Claude Code

Terminal
claude mcp add cbr-rates -- atomno-mcp-cbr-rates

Tools

NameInputsReturns
get_ratechar_code: str, on_date?: dateCurrencyRate β€” single quote on the given (or latest) date
history_rateschar_code: str, date_from: date, date_to: dateHistoryRates β€” series of daily quotes
key_ratedate_from?: date, date_to?: dateKeyRateHistory β€” CBR key-rate series
inflationyear_from?: int, year_to?: intInflationData β€” monthly year-over-year CPI in percent
statistics(none)MacroSnapshot β€” combined dashboard: key rate + USD/EUR/CNY + inflation

Examples in plain English:

"What was the official EUR rate on April 25, 2024?" Tool: get_rate(char_code="EUR", on_date="2024-04-25")

"Plot the daily USD-RUB rate over the last 90 days." Tool: history_rates(char_code="USD", date_from=..., date_to=...)

"Give me the latest key rate, USD/EUR/CNY, and inflation in one go." Tool: statistics()

The history_rates window is capped at 366 days; for longer periods, call the tool repeatedly.


Configuration

All settings are optional and read from environment variables:

VariableDefaultDescription
MCP_CBR_HTTP_TIMEOUT15HTTP timeout in seconds for CBR calls.
MCP_CBR_CACHE_DAILY_TTL3600Cache TTL for daily quotes (seconds).
MCP_CBR_CACHE_HISTORY_TTL86400Cache TTL for historical series and SOAP responses.
MCP_CBR_LOG_LEVELINFOStandard Python log level.

Legacy CBR_* names are still accepted for compatibility, but new configs should use MCP_CBR_*.

There are no API keys to configure β€” all CBR endpoints used here are public.


Development

bash
git clone https://github.com/atomno-mcp/mcp-cbr-rates.git
cd mcp-cbr-rates
python -m venv .venv && source .venv/bin/activate  # or .\.venv\Scripts\activate on Windows
pip install -e ".[dev]"
pytest --cov=src/mcp_cbr_rates

Layout:

server.ts
apps/mcp-cbr-rates/
β”œβ”€β”€ src/mcp_cbr_rates/
β”‚   β”œβ”€β”€ server.py        # FastMCP entry point, tool registration
β”‚   β”œβ”€β”€ tools.py         # high-level async tools with caching
β”‚   β”œβ”€β”€ client.py        # httpx wrapper around CBR XML / SOAP / HTML endpoints
β”‚   β”œβ”€β”€ schemas.py       # Pydantic v2 models for inputs & outputs
β”‚   β”œβ”€β”€ cache.py         # async TTL cache
β”‚   β”œβ”€β”€ currency_codes.py # static ISO β†’ CBR id map (with dynamic fallback)
β”‚   └── errors.py        # typed exception hierarchy
└── tests/               # respx-mocked unit tests + fixtures

Data sources

  • https://www.cbr.ru/scripts/XML_daily.asp β€” daily currency quotes.
  • https://www.cbr.ru/scripts/XML_dynamic.asp β€” historical currency series.
  • https://www.cbr.ru/scripts/XML_valFull.asp β€” currency code lookup.
  • https://www.cbr.ru/DailyInfoWebServ/DailyInfo.asmx β€” SOAP service for the CBR key rate.
  • https://www.cbr.ru/hd_base/infl/ β€” monthly year-over-year inflation table.

All endpoints are read-only and free of charge.


Disclaimer

This project is not affiliated with the Bank of Russia in any way. It is an unofficial, best-effort wrapper around publicly available data. Use at your own risk; the authors disclaim any responsibility for the freshness, accuracy or applicability of the data delivered through this server.

If CBR's HTML or XML schemas change, individual tools may stop working until this package is updated. Please open an issue if you notice a regression.


License

MIT β€” see LICENSE.

Related MCP Servers

View all in Finance & Fintech View all alternatives
  • M
    Mcp Server

    34 stock valuation, financial data, and portfolio management tools for AI agents.

    πŸ’° Finance & Fintech0 views
    Compare vs Mcp Server β†’
  • K
    Keithah Tessie Mcp

    Unofficial integration! ## ✨ Key Features ### πŸ’° Financial Intelligence - **Smart Charging Cost An…

    πŸ’° Finance & Fintech0 views
    Compare vs Keithah Tessie Mcp β†’
  • M
    Mcp Market Data

    MCP server for cryptocurrency asset prices, exchange rates, and market metadata via Crypto APIs

    πŸ’° Finance & Fintech0 views
    Compare vs Mcp Market Data β†’
  • S
    Stock Analyzer Ai Mcp

    AI-powered stock analyzer ai MCP server for agents. Supports analyze stock, calculate ratios

    πŸ’° Finance & Fintech1 views
    Compare vs Stock Analyzer Ai Mcp β†’

Frequently Asked Questions about Mcp Cbr Rates

Add the following block to your claude_desktop_config.json under mcpServers: "mcpServers": { "mcp-cbr-rates": { "command": "npx", "args": ["-y", "mcp-cbr-rates"] } }

AllMCPs Directory Badge

Full Badge Customizer

Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.

Badge Style:
Live Dynamic SVG PreviewMcp Cbr Rates AllMCPs Directory Badge
Markdown (GitHub README)
[![AllMCPs](https://allmcps.com/api/badge/mcp-cbr-rates?style=directory)](https://allmcps.com/mcp/mcp-cbr-rates)
HTML Embed
<a href="https://allmcps.com/mcp/mcp-cbr-rates"><img src="https://allmcps.com/api/badge/mcp-cbr-rates?style=directory" alt="Mcp Cbr Rates on AllMCPs" /></a>

Technical Specs & Signals

CategoryπŸ’°Finance & Fintech
More technical detailsExpand β–Ύ
TransportSTDIO
RuntimeNode.js
0/4 checks healthy over the last 6h
Views0
Unique ViewsTotal visits recorded for this listing page on AllMCPs.
Installs0
Installs & Copy ActionsTotal times users copied install commands or configuration snippets for this server.
27Quality signal: Emerging Β· 27/100How this signal is calculated β–Ύ
Server availabilityNot measured

Not scored for repo-hosted servers β€” we can't reach the running server, only its GitHub page. Hosted MCP endpoints are health-checked live.

Verified ownership8/20
Documentation & tools11/30
Adoption & activity1/15
Community engagement0/10

A guidance signal from public completeness & health data β€” not a user rating. New listings start lower and rise as they add docs, get verified, and grow adoption. Signals we can't observe for a listing are skipped, not counted against it.

β˜… Spotlight Slot

Feature Your MCP Server

Get maximum visibility for your server across our directory, search results, and detail pages.

Spotlight Your Server

Own this project?

This directory is pre-filled from public sources. Claim via GitHub README, site badge, or DNS TXT to get the verified badge and attach your website.

Free dofollow backlink: after claiming, verify your product site and place a dofollow AllMCPs badge β€” we recheck it stays live.

Claim & get free dofollow

Share & Embed

Add our SVG badge (dark/light directory styles) or embeddable widget to your site.

Explore more

More in πŸ’° Finance & Fintech β†’Best MCP servers for Finance & Fintech β†’Alternatives to Mcp Cbr Rates β†’Install in Claude DesktopInstall in CursorInstall in VS Code