boc-valet-mcp
Click on "Install 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., "@boc-valet-mcpwhat's the latest USD/CAD exchange rate?"
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.
šØš¦ Bank of Canada Valet MCP Server
An MCP server that gives LLM agents (Claude, and any other MCP-compatible client) live access to Canadian economic and financial data through the Bank of Canada Valet API ā exchange rates, interest rates, inflation series, and thousands more.
The Valet API is free and requires no API key, so this server runs out of the box.
Ask "What's the latest USD/CAD exchange rate?" or "Chart CORRA over the last month" and the agent pulls the numbers straight from the source.
Why this exists
Large language models don't know today's exchange rate ā their training data is frozen in the past. MCP closes that gap by letting a model call live tools. This server is a small, focused, production-shaped example of that pattern: clean tool design, input validation, actionable errors, and tests.
Related MCP server: Data360 MCP Server
Features
5 well-scoped tools covering discovery ā metadata ā data retrieval
No API key ā the Valet API is public
Dual output ā human-readable Markdown or structured JSON, per call
Search + pagination over the large series/group catalogue
Multi-series comparison ā pull several series side by side in one call
Agent-friendly errors ā every failure explains what to try next
Typed & validated ā Pydantic
Fieldconstraints on every parameterTested ā offline unit tests, no network needed for CI
Tools
Tool | What it does |
| Search / list the available data series (start here) |
| Search / list curated groups of related series |
| Fetch metadata (label, description) for one series |
| Core: get data points for one or more series, by date range or most-recent |
| Get every series in a group in a single call |
Architecture
src/boc_valet_mcp/
āāā server.py # MCP tool definitions (the interface agents see)
āāā client.py # Async httpx client + centralized, actionable errors
āāā formatting.py # Markdown / JSON rendering (shared by every tool)The separation keeps each layer testable: tools stay thin, HTTP concerns live in one place, and presentation logic is unit-tested offline against representative payloads.
Quickstart
git clone https://github.com/Chatusvi-Karnati/boc-valet-mcp.git
cd boc-valet-mcp
python -m venv .venv && source .venv/bin/activate # Windows: .venv\Scripts\activate
pip install -e .Run it directly (it speaks MCP over stdio):
boc-valet-mcpInspect it interactively
The MCP Inspector is the fastest way to click through the tools:
npx @modelcontextprotocol/inspector boc-valet-mcpUse it with Claude Desktop
Add this to your claude_desktop_config.json (see examples/):
{
"mcpServers": {
"bank-of-canada": {
"command": "boc-valet-mcp"
}
}
}Restart Claude Desktop and ask it something like "Compare the USD/CAD and EUR/CAD rates over the past week."
Example
Calling boc_get_observations with series_names="FXUSDCAD", recent=1:
**Series:**
- `FXUSDCAD` ā US dollar to Canadian dollar daily exchange rate
| Date | FXUSDCAD |
|------------|----------|
| 2024-06-03 | 1.3654 |
_1 observation(s)._Development
pip install -e ".[dev]"
pytest # run the test suite
ruff check . # lintHow it was built
Designed and built following Anthropic's MCP server best practices ā comprehensive tool coverage, readOnly/idempotent annotations, Pydantic-validated inputs, and error messages written for an agent audience. Developed with an AI-assisted workflow using Claude Code.
License
MIT ā see LICENSE.
Acknowledgements
Data is provided by the Bank of Canada Valet API. This project is not affiliated with or endorsed by the Bank of Canada. Please review the Bank of Canada's terms of use for the data.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Chatusvi-Karnati/boc-valet-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server