Connects to the Bank of Canada's Valet API to pull Canadian economic data and foreign exchange rates. The implementation is minimal, exposing a single tool for series metadata lookup (like FXUSDCAD or any V-series identifier). No API key required. Part of the Pipeworx gateway ecosystem, which means you can either use this standalone or access it alongside 250+ other data sources through their unified gateway. If you're building agents that need Canadian inflation numbers, interest rates, or currency data, this gives you a keyless entry point. The ask_pipeworx natural language wrapper lets you query in plain English rather than calling tools directly.
Bank of Canada Valet API MCP. Keyless. Dates are YYYY-MM-DD.
Part of Pipeworx — an MCP gateway connecting AI agents to 673+ live data sources.
| Tool | Description |
|---|---|
series_info | Metadata for a single series: label and description. e.g. "FXUSDCAD" or "V39079". |
Add to your MCP client (Claude Desktop, Cursor, Windsurf, etc.):
{
"mcpServers": {
"bank-of-canada": {
"url": "https://gateway.pipeworx.io/bank-of-canada/mcp"
}
}
}
Or connect to the full Pipeworx gateway for access to all 673+ data sources:
{
"mcpServers": {
"pipeworx": {
"url": "https://gateway.pipeworx.io/mcp"
}
}
}
Instead of calling tools directly, you can ask questions in plain English:
ask_pipeworx({ question: "your question about Bank Of Canada data" })
The gateway picks the right tool and fills the arguments automatically.
MIT