The full upstream README, mirrored here for reference. Install config, tool schemas, adoption signals, and an original overview live on the Bag Epl MCP listing page.
\U0001f1e8\U0001f1ed Part of the Swiss Public Data MCP Portfolio
MCP Server for the Swiss BAG electronic benefits platform (ePL) — Spezialitaetenliste, GGSL, MiGeL
\U0001f1e9\U0001f1ea Deutsche Version
bag-epl-mcp enables AI models to answer questions about mandatory health insurance coverage in Switzerland — in natural language, grounded in real data.
| List | Purpose | Legal basis |
|---|---|---|
| Spezialitaetenliste (SL) | Compulsory-insurance medications | KVG Art. 52 |
| GGSL | Medications for congenital disorders (IV) | IVG Anhang |
| MiGeL | Medical devices & aids | KLV Art. 20 |
Anchor query: "Is this medication covered by mandatory health insurance?"
→ epl_sl_suche: Live lookup in the Spezialitaetenliste (SL)
→ More use cases by audience →
epl_sl_suche — search the Spezialitaetenliste for medicationsepl_rechtskontext — legal context with Fedlex linksOr with uvx (no permanent installation):
Transport & host are configured exclusively via environment variables (
MCP_TRANSPORT,MCP_HOST,MCP_PORT). The default isstdiobound to nothing;MCP_HOSTdefaults to127.0.0.1and should only be set to0.0.0.0inside a container/cloud environment.
Try it immediately in Claude Desktop:
"Is Methylphenidate (Ritalin) covered by mandatory health insurance?" "Which laws regulate admission to the Spezialitaetenliste?" "Is a wheelchair covered by mandatory insurance?"
Edit ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows):
Or with uvx:
Render.com (recommended):
pip install -e ".[http]"MCP_TRANSPORT=streamable-httpMCP_HOST=0.0.0.0 (required so the container accepts external traffic)MCP_PORT=8000 (or Render's $PORT)MCP_CORS_ORIGINS='["https://claude.ai"]' to extend the
browser CORS allow-listpip install -e ".[http,otel]"
and point OTEL_EXPORTER_OTLP_ENDPOINT at your collector. Set
MCP_OTEL_ENABLED=0 to disable.python -m bag_epl_mcp.serverhttps://your-app.onrender.com/mcpSecurity note: the server exposes only public, read-only data and uses no authentication. See
docs/SECURITY.mdfor the threat model (egress allow-list, host binding, Lethal-Trifecta assessment).
| Tool | Description |
|---|---|
epl_sl_suche | Search the Spezialitaetenliste for compulsory-insurance medications |
epl_ggsl_abfrage | Check GGSL coverage for congenital disorders |
epl_migel_suche | Search the MiGeL for medical devices & aids |
epl_gesuchseingaenge | List pending SL admission requests (transparency) |
epl_rechtskontext | Legal context for coverage questions (WZW criteria) |
epl_server_info | Server status and API phase information |
| Query | Tool |
|---|---|
| "Is Ritalin covered by insurance?" | epl_sl_suche |
| "Which medications for congenital disorder GG-313?" | epl_ggsl_abfrage |
| "Is a wheelchair covered?" | epl_migel_suche |
| "Which laws regulate the SL?" | epl_rechtskontext |
Data flow (Phase 1):
Phase roadmap (details in docs/ROADMAP.md):
What Phase 1 does, and what it does not. Five of the six tools make no network request at all — there is exactly one outgoing HTTP call in the whole module. They return the legal basis and an entry point, and they now say so. The previous wording, "XML/XLSX downloads + SL website access", advertised a capability with no code path behind it; on 2026-08-08 it was removed rather than implemented, because the underlying source is not machine-readable.
That one HTTP call goes to sl.bag.admin.ch/api/search and receives HTTP 200
with text/html — the 51 KB Angular shell. A freely invented path under the
same prefix returns the identical response, byte for byte: there is no API at
that address. Previously the resulting JSON parse error was caught by a bare
except Exception and turned into the claim "the SL database API is not
publicly documented" — a statement about the BAG's publishing practice,
derived from a parser error. The tool now reports what was measured.
The SL front end calls https://epl.bag.admin.ch/api/sl/ instead, on a
different host. That host answers 401 without authentication — but it answers
401 for invented paths too, so this does not establish that any particular
route exists. It is deliberately not on the egress allow-list: without
verifiable access, adding it would be a grant on suspicion.
MCP protocol version: 2025-11-25 (surfaced via epl_server_info) — the
initialize handshake ceiling, derived from the SDK rather than written down
here a second time. See MCP Protocol Version for both
eras. SDK
updates are proposed monthly via Dependabot; the protocol version is reviewed on
every mcp SDK bump — see the versioning policy in docs/ROADMAP.md.
limit parameters conservatively.scripts/record_fixtures.py on every run, together with a control request to an invented path. Two BAG pages previously handed out (.../Arzneimittel/geburtsgebrechen-spezialitaetenliste.html and .../Arzneimittel/gesuchseingaenge.html) answered HTTP 404 on 2026-08-08 and were replaced by the entry point that verifiably resolves — not by a guessed replacement URL.eli/cc/1986/40_40_40, no register entry) went unnoticed; the correct ELI is eli/cc/1986/46_46_46.source / provenance block (JSON) or a source-and-licence footer (Markdown) so attribution is preserved.content) and a typed structuredContent validated against a per-tool output schema, so MCP clients can consume results programmatically without parsing prose.This 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.
100 tests — 88 offline, 12 against the live sources.
Until 2026-08-08 six of the eight live tests could not pass. They compared a string against a tool's return value:
CallToolResult is a Pydantic model; in iterates over (field, value)
pairs, so the comparison is always false. Nobody noticed, because CI excludes
-m live — a test that only runs outside CI and is always red there reports to
no one.
And even fixed, four of them would have proved nothing: assert "313" in result against a tool that writes its own input into a template, assert "Rollstuhl" in result likewise. They asserted that a tool echoes its input —
which is precisely what those tools do.
What must hold permanently therefore lives in tests/test_quellen_vertrag.py,
which runs inside CI against the recorded measurements under
tests/fixtures/. PROVENANCE.md records source, date, selection rule and
SHA-256 for each one.
Four of the recorded measurements are controls — an invented path under
sl.bag.admin.ch/api/, an invented path in the BAG portal, an invented ELI,
and an invented SR number. Without them each measurement would only show what
we received, not what the source actually holds. The recorder aborts if a
control stops discriminating, if a live entry point dies, if one of the dead
pages returns, or if a legal reference drifts from the register.
See CHANGELOG.md
See CONTRIBUTING.md
See SECURITY.md (Deutsch) for the security posture and how to report a vulnerability.
MIT License — see LICENSE
Hayal Oezkan · 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):