Server data from the Official MCP Registry
MCP server for Swiss federal finances (EFV): budget, debt, forecasts and spending data
MCP server for Swiss federal finances (EFV): budget, debt, forecasts and spending data
Valid MCP server (1 strong, 4 medium validity signals). No known CVEs in dependencies. Package registry verified. Imported from the Official MCP Registry. Trust signals: trusted author (37/38 approved).
10 files analyzed Β· 1 issue found
Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.
This plugin requests these system permissions. Most are normal for its category.
Set these up before or after installing:
Environment variable: TRANSPORT
Environment variable: HOST
Environment variable: PORT
Environment variable: EFV_MCP_LOG_LEVEL
Environment variable: EFV_MCP_CORS_ORIGINS
Environment variable: EFV_MCP_OTEL_ENABLED
Add this to your MCP configuration file:
{
"mcpServers": {
"io-github-malkreide-swiss-efv-mcp": {
"args": [
"swiss-efv-mcp"
],
"command": "uvx"
}
}
}From the project's GitHub README.
π¨π Part of the Swiss Public Data MCP Portfolio β open-source MCP servers connecting AI agents to Swiss public and open data. This is a private project. It is independent of any employer or institutional affiliation.
MCP server for Swiss federal finances (EFV): budget, debt, forecasts and spending by task and institution.
This server closes the fiscal gap in the portfolio's Economics & Finance cluster.
swiss-snb-mcp already covers monetary policy; swiss-efv-mcp adds the state
budget β federal revenue, expenditure, balance, debt ratios (with forecasts to
2029), a hierarchical budget drill-down, and spending by department. Data comes
from the EidgenΓΆssische Finanzverwaltung (EFV) via opendata.swiss (OGD Schweiz).
is_projection so actuals and plan/forecast
years are unambiguous.dump_status never returns empty silently.stdio (local) and SSE (cloud)."How has the federal balance developed since the SNB rate turnaround in 2022 β and which task areas absorbed the growth in spending?"
fiscal_headline(variable="saldo", household="bund", year_from=2021)
fiscal_budget_breakdown(topic="Ausgaben nach Aufgabengebiet", level=2)
Cross-read with swiss-snb-mcp, this connects the interest-rate cycle to the
federal deficit β something neither server can answer alone.
uv / uvx (recommended) or pipdata.finance.admin.ch and efv.admin.ch β no API key neededuvx swiss-efv-mcp # zero-install run (once published to PyPI)
# or
pip install swiss-efv-mcp
Claude Desktop (claude_desktop_config.json):
{
"mcpServers": {
"swiss-efv": {
"command": "uvx",
"args": ["swiss-efv-mcp"]
}
}
}
# Run locally over stdio (default transport)
uvx swiss-efv-mcp
# From a checkout, without installing
PYTHONPATH=src python -m swiss_efv_mcp
All configuration is loaded once into a typed Settings object
(pydantic-settings). The legacy unprefixed names below keep working; the
canonical names use the EFV_MCP_ prefix. Defaults are safe for local use.
| Variable | Default | Purpose |
|---|---|---|
TRANSPORT | stdio | Transport: stdio (Claude Desktop) or sse / streamable-http (cloud) |
HOST | 127.0.0.1 | Bind host (SSE only). Loopback by default; set 0.0.0.0 only in a container |
PORT | 8000 | Bind port (SSE only) |
EFV_MCP_LOG_LEVEL | INFO | structlog level (JSON to stderr) |
EFV_MCP_CORS_ORIGINS | [] | SSE only: explicit allowed browser origins (default-deny; comma-separated or JSON) |
EFV_MCP_OTEL_ENABLED | false | Enable OpenTelemetry tracing (requires the otel extra); standard OTEL_* env vars configure export |
Cloud (Render / Railway):
TRANSPORT=sse PORT=8000 swiss-efv-mcp # exposes /sse
| Tool | Purpose |
|---|---|
fiscal_headline | Revenue / expenditure / balance / debt ratios over 1990β2029, per household and model; every point flags is_projection |
fiscal_budget_breakdown | Hierarchical federal budget by topic (Ausgaben nach Art / nach Aufgabengebiet, Einnahmen, Bilanz, β¦) |
fiscal_by_institution | Spending per department / administrative unit since 2007 (Personalausgaben, Informatik, external services, FTE) |
fiscal_list_dimensions | Discover valid parameter values β call this first to build correct arguments |
fiscal_status | Cache freshness and upstream health per dataset; never returns empty silently |
dump_status | Deprecated alias of fiscal_status (kept for backward compatibility; removed in a future minor) |
All tools are read-only: each is annotated readOnlyHint: true,
destructiveHint: false, only issues HTTP GETs against the EFV dump files, and
has no write, send, or filesystem capability.
MCP primitives. This server uses only the Tools primitive. The EFV data
are sliced live from cached dumps with no stable resource hierarchy to expose as
Resources, and there are no server-authored Prompts. The five tools are small
and closely related, so they live in a single server.py rather than a tools/
package.
ββββββββββββββββββββββββββββββββ
Claude / Agent βββΆ β swiss-efv-mcp (FastMCP) β
β 5 tools Β· Pydantic v2 env. β
βββββββββββββββββ¬βββββββββββββββ
β fetch + retry + TTL cache
βββββββββββββββββββββββββ΄ββββββββββββββββββββββββ
βΌ βΌ
data.finance.admin.ch efv.admin.ch/dam
fs_dashboard/main_extern.csv bundeshaushalt_de.csv
(headline, 1990β2029) institutionen_de.csv
This server uses Architecture C (Dump-first).
Rationale (verified live on 2026-07-24):
standardauswertung.csv 157 MB, fir_art_funk.csv
1.23 GB) are out of scope for v0.1.0; loading them per request is not
viable. A future Phase 2 would pre-process them into SQLite/Parquet.Consequences:
dump_status always returns a
readable state.swiss-efv-mcp/
βββ src/swiss_efv_mcp/
β βββ __init__.py
β βββ __main__.py # entry point; dual transport (stdio / SSE+CORS)
β βββ client.py # dump-first data layer: egress allow-list, retry, UA, TTL cache
β βββ logging_config.py # structlog JSON to stderr
β βββ models.py # Pydantic v2 envelopes (source + provenance)
β βββ server.py # 5 FastMCP tools (annotated) + testable *_impl functions
β βββ settings.py # typed pydantic-settings config
βββ tests/ # respx mock tests + hardening tests + @pytest.mark.live
βββ docs/ # network-egress.md + accepted-risk ADRs
βββ audits/ # MCP best-practice audit runs (findings, report, summary)
βββ README.md Β· README.de.md Β· CHANGELOG.md Β· SECURITY.md Β· CONTRIBUTING.md
βββ Dockerfile Β· server.json Β· LICENSE
βββ pyproject.toml
readOnlyHint: true, only issues HTTP
GETs against the EFV dump files, and has no write, send, or filesystem capability.ALLOWED_HOSTS frozenset + assert_host_allowed()
is enforced before every request (HTTPS-only, two fixed EFV hosts). URLs are
hardcoded constants; no user input builds a URL. See docs/network-egress.md.User-Agent is injected because the endpoints
403 the default httpx/curl UA (see Known limitations) β do not remove it.mask_error_details=True plus client-side masking keep raw
upstream/internal detail out of tool results; full detail goes only to the
structlog stderr log.1900β2100, level 1β8, string max_length).dump_status always returns a readable
state and never a silent empty.HOST, default 127.0.0.1; set
HOST=0.0.0.0 only inside a container (the provided Dockerfile does).
Browser origins must be listed explicitly via EFV_MCP_CORS_ORIGINS.audits/ and SECURITY.md.
Accepted risks are documented as ADRs under docs/adr/.Live-probe findings (2026-07-24), also in CHANGELOG.md β Known findings:
| Finding | Impact |
|---|---|
| Endpoints return HTTP 403 without a browser User-Agent | UA is injected by the client; do not remove it |
| opendata.swiss "CSV" links for 2 datasets point to an HTML landing page | real files resolved to a DAM path (/dam/de/sd-web/{id}/β¦) whose opaque id may rotate on re-upload |
NA appears as a literal string in hh/model/source | cleaned to None centrally |
"Forward-looking" is not one label: Bund uses "Budget/financial plans", staat uses "Forecasts" | abstracted via is_projection |
| Accounting-model break at 2022/2023 ("bis 2022" vs "ab 2023" topics) | series has a seam; a note flags affected topics |
| Detail cubes (157 MB / 1.23 GB) not served | Phase 2; use the curated files for now |
This server is in Phase 1 (read-only). Every tool only ever fetches the public EFV dump files β there are no write, send, or filesystem capabilities.
| Phase | Scope | Status |
|---|---|---|
| 1 β Read-only | Headline series, budget breakdown, spending by institution | β current |
| 2 β Detail cubes | Pre-process the 157 MB / 1.23 GB cubes to SQLite/Parquet | planned |
| 3 β Multi-agent | (none planned) | β |
A transition to a later phase would require a re-audit before any write-capable tool is added.
The protocol version is negotiated at the initialize handshake by
FastMCP (pinned fastmcp>=3.4 in
pyproject.toml), which builds on the mcp Python SDK. The baseline this server
is built and audited against is 2025-11-25, pinned as MCP_PROTOCOL_VERSION
in server.py; a regression test asserts the negotiated version still equals it,
so a protocol-changing SDK bump fails CI loudly (ARCH-012). Dependencies are kept
current via monthly Dependabot PRs (.github/dependabot.yml); protocol-relevant
bumps are noted in CHANGELOG.md.
PYTHONPATH=src pytest tests/ -m "not live" # offline, respx-mocked
PYTHONPATH=src pytest tests/ -m live # hits the real EFV endpoints
PYTHONPATH=src ruff check src tests
See CHANGELOG.md.
See SECURITY.md for the security posture, hardening controls, and how to report a vulnerability.
Issues and pull requests are welcome. Please keep tools read-only, run
ruff check and the offline test suite before submitting, and add a
CHANGELOG.md entry under [Unreleased] for user-facing changes. See
CONTRIBUTING.md.
Maintainers: see PUBLISHING.md for the step-by-step PyPI release process (Trusted Publishing via GitHub Release).
MIT for this server β see LICENSE. The EFV data remain subject to the OGD Schweiz terms (freely usable, with attribution).
Hayal Oezkan Β· github.com/malkreide
swiss-snb-mcp (monetary policy) β the fiscal/monetary pairDisclaimer: private project, independent of any employer or institution. No warranty; figures are not authoritative β consult the EFV originals for official use.
Be the first to review this server!
by Modelcontextprotocol Β· Developer Tools
Read, search, and manipulate Git repositories programmatically
by Toleno Β· Developer Tools
Toleno Network MCP Server β Manage your Toleno mining account with Claude AI using natural language.
by mcp-marketplace Β· Developer Tools
Create, build, and publish Python MCP servers to PyPI β conversationally.