ch-eli-mcp
This server allows you to search and retrieve metadata about Swiss federal legislation via the Fedlex platform.
Search for acts (
ch_search_acts): Full-text search over Swiss federal act titles (e.g., "Datenschutz") in German, French, Italian, or English, with configurable result limits.Retrieve act details (
ch_get_act): Fetch full metadata for a specific act by its Fedlex ELI URI (European Legislation Identifier) in any of the four supported languages.Multilingual support: All queries accept a language parameter — German (
DEU), French (FRA), Italian (ITA), or English (ENG).Standardized output: Every result includes a
lex_uri(native ELI URI), asource_url(link to the public Fedlex page with the full legal text), and ahuman_readable_citation(including the Swiss SR number).
Note: This server returns metadata only (titles, SR numbers, URIs) — not the operative text of the laws. Use the
source_urlto access the full legal text on the official Fedlex website.
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., "@ch-eli-mcpSearch for Swiss acts about data protection"
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.
ch-eli-mcp
MCP server for Swiss federal legislation via Fedlex, the Federal Chancellery's official publication platform. Fedlex is genuinely ELI-native (European Legislation Identifier) even though Switzerland is not an EU member. Multilingual: German, French, Italian, English.
What this is not
This connector returns metadata (title, SR number) via SPARQL - not the
operative text of the law. source_url points to the public Fedlex page
where the full text lives.
Related MCP server: swiss-courts-mcp
Tools
Tool | Purpose |
| Full-text search over act titles, in one of four languages |
| Full detail for one act by its Fedlex ELI URI |
| Declare what this connector covers, when each family was captured, and - explicitly - what it does NOT cover. Every gap carries a fallback. |
Every response carries lex_uri (the native ELI URI - not invented, taken
directly from Fedlex), source_url (the public HTML page), and
human_readable_citation (e.g. "Bundesverfassung der Schweizerischen Eidgenossenschaft (SR 101)" - the SR number is Switzerland's own
Systematische Sammlung / Classified Compilation citation convention).
Install
pip install ch-eli-mcpWindows 11 with Smart App Control
Smart App Control blocks unsigned executables, which covers uvx.exe, pip.exe
and the ch-eli-mcp.exe launcher that pip writes at install time. The python.exe and
py.exe from the python.org installer are signed by the Python Software
Foundation, so running the module through the interpreter works:
python -m pip install ch-eli-mcp
python -m ch_eli_mcppip.exe is blocked for the same reason, so install with python -m pip, not
pip install. If python is not on PATH, use the Windows launcher: py -3 -m ch_eli_mcp.
{ "mcpServers": { "ch-eli-mcp": { "command": "python", "args": ["-m", "ch_eli_mcp"] } } }Do not turn Smart App Control off to work around this - it cannot be re-enabled without reinstalling Windows.
Configuration
Env var | Default |
|
|
|
|
|
|
License
Apache-2.0 (code). Fedlex content is official Swiss federal publication material (see SOURCES.md).
Available Tools
3 toolsch_coverageARead-onlyIdempotent
Declare what this connector covers, how it is sourced, and what it does NOT cover.
Call this before telling a user that the law "does not contain" something, and whenever a search comes back empty: the absence may be a gap in this connector rather than in the law. Every gap carries a fallback saying where to look instead.
Returns:
Coverage with families, an as-of note, and a non-empty list of known gaps.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Output Schema
| Name | Required | Description |
|---|---|---|
| status | No | |
| families | No | |
| as_of_note | Yes | States what the dates mean, and what they do not promise. |
| known_gaps | No | Never empty. An empty list would mean 'not checked', not 'no gaps'. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint, openWorldHint, idempotentHint, and destructiveHint false. The description adds valuable context by explaining the open-world semantics: an empty search result may reflect a connector gap rather than the law, and each gap includes a fallback. This reinforces and operationalizes the annotations without contradicting them.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is concise and well-structured: purpose first, usage trigger second, return value last. Every sentence earns its place, with no redundant filler. The critical warning about empty search results is front-loaded and easy to act on.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a zero-parameter, read-only tool with rich annotations and an output schema, the description is fully sufficient. It explains what the tool covers, when to call it, why it matters, and what it returns. Nothing an agent needs to decide to invoke this tool correctly is missing.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The tool has zero parameters, so the schema is trivially complete. The baseline for zero-parameter tools is 4, and the description adds no parameter-specific information because none is needed. It appropriately focuses on behavior and return value instead.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description opens with a specific declarative statement of what the tool does: 'Declare what this connector covers, how it is sourced, and what it does NOT cover.' It also specifies the return type ('Coverage with families, an as-of note, and a non-empty list of known gaps'), making the tool's role distinct from the sibling ch_search_acts and ch_get_act tools.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description gives explicit usage triggers: 'Call this before telling a user that the law "does not contain" something, and whenever a search comes back empty.' It explains the rationale and even notes that gaps carry fallbacks. However, it does not name the sibling tools as alternatives or explicitly state when not to use it, so it stops short of a full 5.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
ch_get_actARead-onlyIdempotent
Fetch full detail for one Swiss federal act by its Fedlex ELI URI.
| Name | Required | Description | Default |
|---|---|---|---|
| uri | Yes | e.g. ``"https://fedlex.data.admin.ch/eli/cc/1999/404"``. | |
| lang | No | one of ``"DEU"``, ``"FRA"``, ``"ITA"``, ``"ENG"`` (default ``"DEU"``). | DEU |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnly, openWorld, idempotent, and non-destructive hints. Description adds context about fetching full detail and the source (Fedlex ELI URI). No contradiction; no additional behavioral traits needed beyond what annotations provide.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Single, well-structured sentence with no extraneous words. Every element is purposeful.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given simple tool with 2 parameters, rich annotations, and an output schema, the description covers the essential purpose and usage. Could mention output schema existence, but not required.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so baseline is 3. Description reinforces 'uri' by mentioning 'by its Fedlex ELI URI', but provides no extra semantic for 'lang'. Minimal added value over schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Description clearly specifies verb 'Fetch', resource 'full detail for one Swiss federal act', and method 'by its Fedlex ELI URI'. It distinguishes from sibling ch_search_acts which presumably searches for acts, while this retrieves a specific one.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Description implies usage context: when you have a Fedlex ELI URI and need full details. It does not explicitly state when not to use or mention alternative tools, but the sibling ch_search_acts provides a natural alternative for search scenarios.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
ch_search_actsARead-onlyIdempotent
Full-text search over Swiss federal act titles.
| Name | Required | Description | Default |
|---|---|---|---|
| lang | No | one of ``"DEU"``, ``"FRA"``, ``"ITA"``, ``"ENG"`` (default ``"DEU"``). | DEU |
| limit | No | max results (default 20). | |
| query | Yes | free text, e.g. ``"Datenschutz"``. |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint, openWorldHint, idempotentHint, and destructiveHint, fully covering safety. The description adds no additional behavioral traits beyond the stated operation.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Single sentence, no wasted words, front-loaded with the essential action. Perfectly concise for a simple search tool.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's simplicity (read-only search, 3 parameters, output schema exists), the description is complete. It covers the domain and operation sufficiently.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so baseline is 3. The description does not add meaning beyond the schema; it only repeats the operation.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states 'Full-text search over Swiss federal act titles', specifying both the verb (search) and resource (Swiss federal act titles). It distinguishes from the sibling tool ch_get_act, which likely retrieves a single act.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies use for searching act titles but provides no explicit guidance on when to use this tool versus the sibling ch_get_act, nor any exclusions or conditions.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
1 tool update
v0.3.3- Added
ch_coverage
2 tool updates
v0.1.0- First observed
ch_get_act - First observed
ch_search_acts
TDQS
Each tool has a clearly distinct purpose: searching act titles, fetching an act by ELI URI, and declaring coverage/gaps. There is no meaningful overlap between them.
The ch_ prefix is consistent and data operations follow a verb_noun pattern: ch_search_acts and ch_get_act. ch_coverage deviates slightly by being a noun-only name, but the pattern is still readable and predictable.
Three tools is lean but reasonable for a narrowly scoped legal retrieval connector. The count is slightly small, but each tool contributes a distinct capability rather than padding the surface.
The connector covers the essential search-and-fetch workflow for Swiss federal acts, and the explicit coverage tool helps surface gaps. However, the surface is minimal and lacks obvious conveniences such as browsing by family or fetching act versions, so some workflows will still require fallback to external sources.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Connectors
Search Swiss federal legislation: laws, articles, amendments via the Fedlex SPARQL endpoint.
opendata.swiss MCP — Switzerland's federal open-data portal (CKAN catalogue).
MCP for CanLII: Canadian case law and legislation metadata (federal, provincial, territorial).
MCP server for Brazilian Federal Senate open data (legislative, administrative, e-Cidadania).
Related MCP Servers
- AlicenseAqualityAmaintenanceMCP Server for Swiss federal law — search the SR, monitor legal changes, and query BBl/treaties via Claude Desktop or Claude.ai.123MIT
- AlicenseAqualityAmaintenanceMCP server for searching Swiss court decisions from federal and cantonal courts via entscheidsuche.ch. Enables full-text search, law reference lookup, and filtering by canton, court level, and date without API keys.81MIT
- AlicenseAqualityAmaintenanceMCP server for TERMDAT, the terminology database of the Swiss Federal Administration, giving AI agents officially validated designations of Swiss authorities, departments, and legal acts across DE/FR/IT/EN with source references and validation status.71MIT
- AlicenseAqualityAmaintenanceMCP server for Switzerland's national metadata catalogue, enabling AI agents to discover datasets, APIs, public services, and publishers through free-text search and structured queries.13MIT
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/matematicsolutions/ch-eli-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server