The full upstream README, mirrored here for reference. Install config, tool schemas, adoption signals, and an original overview live on the Swiss Snb MCP listing page.
🇨🇭 Part of the Swiss Public Data MCP Portfolio
MCP server for the Swiss National Bank (SNB) data portal — exchange rates, balance sheet, interest rates, SARON, monetary aggregates, banking statistics, and balance of payments.
swiss-snb-mcp connects AI models to the official Swiss National Bank data portal at data.snb.ch via the Model Context Protocol (MCP). It provides structured access to SNB's public REST API — no authentication required.
The server covers three tiers of datasets, all confirmed against the live API:
Phase 1 — Dedicated tools:
devkum publishes against CHF — including two USD forward rates, which are labelled as suchPhase 2 — Via generic cube tools (snb_get_cube_data + snb_get_cube_metadata):
Phase 3 — Warehouse API (banking statistics) and balance of payments:
Anchor demo query: "What was the EUR/CHF exchange rate during the 2015 Franc shock, and where does the SNB policy rate stand today compared to the Fed and ECB?"
uv or pipVia uvx (recommended — no permanent installation needed):
Via pip:
From source:
Claude Desktop — add to claude_desktop_config.json:
Config file locations:
~/Library/Application Support/Claude/claude_desktop_config.json%APPDATA%\Claude\claude_desktop_config.jsonTry it immediately in Claude Desktop:
"What is the current EUR/CHF exchange rate according to the SNB?" "Show me the SNB balance sheet for the last 12 months — gold and foreign reserves."
No API key or authentication required. The SNB data portal is fully public.
Optional environment variable:
| Variable | Default | Description |
|---|---|---|
SNB_TIMEOUT | 15 | HTTP request timeout in seconds |
| Tool | Description |
|---|---|
snb_get_exchange_rates | Monthly CHF rates for EUR, USD, JPY, GBP, CNY and 22 more currencies |
snb_get_annual_exchange_rates | Annual average rates, data from 1980 |
snb_get_balance_sheet | SNB Bilanz positions in millions CHF (monthly) |
snb_convert_currency | Convert any amount to CHF using official SNB rates |
| Tool | Description |
|---|---|
snb_get_cube_data | Generic access to any SNB cube by ID |
snb_get_cube_metadata | Inspect dimensions and filter values of any cube |
| Tool | Description |
|---|---|
snb_get_banking_balance_sheet | Banking balance sheets by bank group (monthly/annual, assets/liabilities) |
snb_get_banking_income | Banking income statements by bank group (annual) |
snb_get_balance_of_payments | Balance of payments and international investment position (quarterly) |
snb_get_warehouse_data | Generic access to any SNB Warehouse cube by ID |
snb_get_warehouse_metadata | Inspect dimensions and last update of a Warehouse cube |
Discovery aids served as MCP resources rather than tools so they don't crowd the tool manifest:
| URI | Description |
|---|---|
data://snb/currencies | All 28 currency IDs with labels and units |
data://snb/balance-sheet-positions | Asset and liability position IDs |
data://snb/cubes | All verified Cube-API IDs (Phase 1–2) + discovery guide |
data://snb/warehouse-cubes | Available Warehouse cube IDs (BSTA) |
data://snb/bank-groups | All 12 bank group IDs with labels |
| Query | Tool |
|---|---|
| "What is the current EUR/CHF rate?" | snb_get_exchange_rates |
| "Convert CHF 10,000 to USD" | snb_convert_currency |
| "Show SNB gold reserves over the last year" | snb_get_balance_sheet |
| "What is the current SNB policy rate?" | snb_get_cube_data (cube: snbgwdzid) |
| "How do SNB, Fed and ECB rates compare?" | snb_get_cube_data (cube: snboffzisa) |
| "What is the SARON 3M compound rate?" | snb_get_cube_data (cube: zirepo) |
| "How fast is M3 money supply growing?" | snb_get_cube_data (cube: snbmonagg) |
| "Total assets of all Swiss banks?" | snb_get_banking_balance_sheet |
| "Income statement of cantonal banks?" | snb_get_banking_income (bank_group: G10) |
| "Switzerland's balance of payments?" | snb_get_balance_of_payments |
| "Which cubes are available?" | resource data://snb/cubes |
→ More use cases by audience →
| Aspect | Details |
|---|---|
| Access | Read-only (readOnlyHint: true) — the server cannot modify or delete any data |
| Personal data | No personal data — all sources are aggregated, public macroeconomic statistics |
| Rate limits | SNB Warehouse API has WAF protection (HTTP 503 after ~100 rapid requests); the server retries automatically with exponential backoff (max 3 retries, delays 2/4/8s) |
| Timeout | 15 seconds per API call |
| Authentication | No API keys required — both APIs (/api/cube/ and /api/warehouse/cube/) are publicly accessible |
| Data source | Swiss National Bank — data.snb.ch |
| Terms of Service | Subject to SNB's Terms of Use and Copyright; data is free for non-commercial use with source attribution |
The SNB API follows a consistent cube-based structure. Read the data://snb/cubes resource to explore verified cube IDs, then snb_get_cube_metadata to inspect dimensions before querying with snb_get_cube_data. Phase 3 adds the Warehouse API (/api/warehouse/cube/) for granular banking statistics — start from the data://snb/warehouse-cubes and data://snb/bank-groups resources.
data://snb/cubes resource for verified IDsThis server speaks two protocol eras over the same endpoint. The client's first request on a connection decides which one applies; a later claim from the other era is refused.
| Era | Revision | Who reaches it |
|---|---|---|
initialize handshake | 2024-11-05 … 2025-11-25 | What today's clients speak. The server answers with the revision asked for, or with the 2025-11-25 ceiling when the request asks for something newer. |
| Per-request envelope | 2026-07-28 | A request carrying the 2026-07-28 _meta envelope opens a modern connection. |
Both revisions are pinned in
tests/test_protocol_version.py and asserted
against the installed SDK, so a Dependabot bump of mcp cannot move either one
silently. This server builds no ASGI app to send an initialize through, so
the gate asserts the SDK constants rather than a measured response — the
weaker form, named rather than left unsaid.
Note that the SDK's LATEST_PROTOCOL_VERSION is an alias for the modern
era, not for the handshake era — pinning against it alone would leave the era
that current clients actually negotiate free to drift.
Update policy. When the gate fails, do not edit the constant blindly: read
the spec changelog between the two revisions, verify the server still behaves,
then move the constant, this section, README.de.md and
CHANGELOG.md together.
The unit-test payloads are recorded, not invented. Source, retrieval date,
selection rule and SHA-256 per file are in
tests/fixtures/PROVENANCE.md. A hand-written
mock encodes its author's assumption and can therefore never refute it —
production code and fixture come from the same head, so where both are wrong,
both are wrong together and the suite stays green. Each file keeps every
series and only shortens the value lists: the code reasons about the
dimensions and merely displays the values, so cutting "the first N series"
would have hidden exactly what three of the findings depended on.
See CHANGELOG.md
See CONTRIBUTING.md for guidelines on reporting issues, suggesting new SNB cube IDs, and contributing code.
This server is read-only, processes no personal data, and talks only to data.snb.ch. See SECURITY.md for the full security posture, audit results, and how to report a vulnerability.
MIT License — see LICENSE
Hayal Oezkan · github.com/malkreide
Run via uv's uvx — no clone or manual install needed. Add to your MCP client config (mcpServers for Claude Desktop, Cursor and Windsurf; use a top-level servers key for VS Code in .vscode/mcp.json):