il-eli-mcp
This server provides tools to search and retrieve Israeli legislation and court judgments via the Knesset's official OData API and a local case-law corpus.
il_search_laws: Full-text search over Hebrew law names, returning status (in-force/repealed), Basic Law flag, and other metadata.il_get_law: Retrieve complete details for a specific law by itsIsraelLawID.il_search_law_texts: Search published law versions, including consolidated texts.il_get_law_documents: Retrieve official PDF document URLs (hosted on fs.knesset.gov.il) for a published law — returns links, not inline text.il_search_case_law: Keyword search over a local corpus of 10,558 Hebrew court judgments from Family, District, Magistrate, Labor, Military, and Administrative courts. Supports optional filtering by court type.il_get_case: Retrieve the full text of a specific court judgment by itsjudgment_id.
Key limitations:
All content is in Hebrew only.
Law texts are provided as PDF links, not inline text.
No Supreme Court judgments are included.
There are two separate ID spaces for laws (
israel_law_idfor the registry,law_idfor published versions) with no reliable join between them.
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., "@il-eli-mcpחפש חוק יסוד: כבוד האדם"
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.
il-eli-mcp
MCP server for Israeli law via the Knesset's official OData API plus a
local case-law corpus. Covers the legislation registry (KNS_IsraelLaw:
in-force/repealed status, Basic Law flag), published law versions with
their official PDF documents (KNS_Law + KNS_DocumentLaw, including
consolidated texts), and 10,558 Hebrew court judgments.
What this is not
Law texts are PDF links, not inline text -
il_get_law_documentsreturns official fs.knesset.gov.il PDF URLs; fetching and reading the PDF is the client's job.Two disjoint legislation id spaces -
israel_law_id(registry) andlaw_id(published versions). The Knesset exposes no reliable general join between them; search both by name (see DISCOVERY.md).Hebrew only - law names, queries and judgments are in Hebrew.
No Supreme Court case law - the local corpus covers Family, District, Magistrate, Labor, Military and Administrative courts only, and its upstream license is undocumented (analysis use, not redistribution).
Related MCP server: LexLink
Tools
Tool | Purpose |
| Full-text search over law names (registry: status, Basic Law flag) |
| Full detail for one law by its |
| Search published law versions (KNS_Law), incl. consolidated texts |
| Official PDF documents for a published law (fs.knesset.gov.il) |
| Keyword search over the local corpus of 10,558 judgments |
| One judgment's full text by |
| 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, source_url and human_readable_citation
(the Hebrew name) - Israel has no separate public citation identifier
scheme for this data, so the URLs are dereferenceable Knesset OData entity
URLs, never invented.
Install
pip install il-eli-mcpWindows 11 with Smart App Control
Smart App Control blocks unsigned executables, which covers uvx.exe, pip.exe
and the il-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 il-eli-mcp
python -m il_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 il_eli_mcp.
{ "mcpServers": { "il-eli-mcp": { "command": "python", "args": ["-m", "il_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). Knesset OData content is official parliamentary publication material (see SOURCES.md).
Available Tools
7 toolsil_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?
Beyond the annotations, the description discloses an important open-world behavior: an empty search result may indicate a connector gap rather than an absence in the law. It also reveals that every gap has a fallback, adding context about what the tool provides and how to proceed.
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 compact and well-structured: it opens with the core purpose, then gives actionable usage guidance, then summarizes the return value. Every sentence adds meaningful information without redundancy.
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 zero parameters, rich annotations, and the presence of an output schema, the description provides everything an agent needs: what the tool does, when to call it, what behavioral caveat to watch for, and what the response contains. No critical operational information 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 and the input schema is empty, so there is no parameter ambiguity to resolve. Per baseline for no-parameter tools, the description is not required to compensate for schema gaps; the return-oriented description is sufficient.
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 states a specific purpose: declaring what the connector covers, how it is sourced, and what it does not cover. It clearly distinguishes this tool from the sibling search/retrieval tools by framing it as a coverage metadata tool rather than a legal-content lookup.
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 triggers: call before asserting the law 'does not contain' something, and whenever a search comes back empty. It explains why this matters, but it does not name specific sibling alternatives or explicitly state when not to use the tool, so it stops short of full alternative routing.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
il_get_caseARead-onlyIdempotent
Fetch full detail (including full judgment text) for one case by its judgment_id.
Reads from the same locally-cached dataset as il_search_case_law - see
that tool's docstring for the download/caching/license notes.
| Name | Required | Description | Default |
|---|---|---|---|
| judgment_id | Yes | the dataset's ``judgment_id`` (from `il_search_case_law` results). |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already provide readOnlyHint, idempotentHint, and destructiveHint false. The description adds value by revealing it reads from a locally-cached dataset (the same as il_search_case_law) and that full judgment text is included. No contradictions.
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 extremely concise: two sentences that front-load the purpose and provide essential context via a cross-reference. No wasted words.
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 presence of an output schema (structure presumably covered there) and comprehensive annotations, the description effectively covers what the tool does, its input source, and a pointer to additional notes. It is complete for the use case.
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 covers the single parameter with 100% description coverage. The description adds meaning by stating the parameter originates from il_search_case_law results, providing context beyond the schema. Baseline 3, plus one for added value.
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 it fetches full detail including full judgment text for one case by judgment_id, differentiating it from siblings like il_search_case_law (which returns summaries) and il_get_law (for laws).
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 explicitly says the judgment_id should come from il_search_case_law results, and directs users to that tool's docstring for caching details. It provides clear context but does not explicitly state when not to use this tool (e.g., for multiple cases), though that is implied.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
il_get_lawARead-onlyIdempotent
Fetch full detail for one Israeli law by its IsraelLawID.
| Name | Required | Description | Default |
|---|---|---|---|
| israel_law_id | Yes | the Knesset OData IsraelLawID (from `il_search_laws`). |
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=false, so the safety profile is fully covered. The description adds minimal behavioral context ('full detail') beyond the annotations, but does not disclose other traits like response size or error behavior. Given the strong annotation coverage, this is adequate.
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 a single, front-loaded sentence with no extraneous words. Every word earns its place, conveying the action, resource, and identifier mechanism efficiently.
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?
This is a simple single-parameter read operation with comprehensive annotations and an output schema. The description, combined with the schema and annotations, provides all necessary context for the agent to invoke the tool correctly. No major gaps exist.
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%, and the parameter description already explains the source and type of `israel_law_id` (Knesset OData IsraelLawID from `il_search_laws`). The tool description itself adds no additional parameter semantics, so the baseline score of 3 is appropriate.
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 uses a specific verb 'Fetch' and clearly identifies the resource ('full detail for one Israeli law') and the unique identifier ('IsraelLawID'). This distinctly separates it from sibling search tools like il_search_laws and document-focused tools like il_get_law_documents.
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 usage when an IsraelLawID is already known, and the parameter description explicitly mentions the ID comes from `il_search_laws`, establishing a clear workflow context. It does not explicitly mention alternatives, but the context is sufficient for an agent to decide when to invoke this tool.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
il_get_law_documentsBRead-onlyIdempotent
Official document files (PDFs) for one published law version.
| Name | Required | Description | Default |
|---|---|---|---|
| law_id | Yes | the KNS_Law id from `il_search_law_texts` (NOT `israel_law_id`). |
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 read-only, idempotent, and non-destructive behavior. The description adds context that the result consists of official PDF files for a published law version, which is useful but does not disclose additional behaviors like pagination or error conditions.
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 a single, compact sentence that conveys the essential purpose without wasted words. It is appropriately structured and immediately clear.
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 presence of a full output schema, rich annotations (readOnly, idempotent, openWorld), and only one parameter with a clear schema explanation, the short description is sufficient to complete the picture. It could mention whether multiple files are returned, but the plural 'files' implies that, and the output schema would clarify.
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 description itself contains no parameter information. However, the input schema provides a detailed description for law_id (KNS_Law id from il_search_law_texts, not israel_law_id), and schema coverage is 100%, so the baseline of 3 applies.
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 identifies the tool as returning official PDF document files for one published law version, differentiating it from siblings like il_get_law by specifying file type. Although no explicit verb is present, the noun phrase conveys the retrieval action.
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 provides no guidance on when to use this tool versus alternatives like il_get_law or il_search_law_texts. The only usage hint appears in the schema's law_id description, which instructs sourcing the ID from il_search_law_texts, but that is not in the tool description itself.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
il_search_case_lawARead-onlyIdempotent
Keyword search over a local, pre-downloaded corpus of Israeli court judgments.
NOT a live API call. The corpus (10,558 Hebrew judgments from Family,
District, Magistrate, Labor, Military and Administrative courts) is a
static HuggingFace dataset (guychuk/case-law-israel) downloaded once
and cached locally on first use of this tool - later calls only touch
the local cache. Its license is undocumented; treat results as for
analysis, not for redistribution.
| Name | Required | Description | Default |
|---|---|---|---|
| court | No | optional substring filter on the court type label (Hebrew), e.g. a fragment of "בית משפט השלום" (Magistrate) or "בית דין לעבודה" (Labor). | |
| limit | No | max results (default 20). | |
| query | Yes | free text in Hebrew, matched against title/full text/judges/case number. |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Beyond the annotations (readOnly, idempotent, non-destructive), the description reveals the corpus is a static HuggingFace dataset cached locally, has an undocumented license, and covers 10,558 judgments from specified courts. This provides essential behavioral context about data source, caching, and usage restrictions.
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 front-loaded: a one-sentence purpose statement followed by crucial caveats about caching and licensing. Every sentence earns its place with no redundancy.
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 presence of annotations and an output schema, the description adequately covers the tool's data scope, cache behavior, license concerns, and court coverage. It gives the agent sufficient context to decide when and how to invoke the tool correctly.
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 input schema already contains 100% parameter description coverage for query, court, and limit. The tool description adds no extra parameter-level meaning, so the baseline score of 3 applies.
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 the tool performs keyword search over a local corpus of Israeli court judgments, listing specific court types. This distinguishes it from sibling tools like il_search_laws (statutes) and il_get_case (specific case retrieval).
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 explicitly notes the tool is NOT a live API call and uses a cached corpus, implying suitable use cases (offline/static analysis). However, it does not name alternative sibling tools or provide explicit when-not-to-use conditions, so it stops short of full guidance.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
il_search_lawsARead-onlyIdempotent
Full-text search over Israeli law names (Hebrew).
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | max results (default 20). | |
| query | Yes | free text in Hebrew, e.g. a keyword from the law's title. |
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, idempotentHint, and non-destructive behavior, so the safety profile is covered. The description adds useful context beyond annotations: it specifies the search is over law names (not texts) and that the query is in Hebrew. It doesn't mention pagination or result limits, but the schema covers the limit parameter. This adds meaningful scope information without redundancy.
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 a single, short sentence that conveys the essential purpose. It uses precise terms ('full-text search', 'law names', 'Hebrew') with no filler or repetitive content. Every word adds value.
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 simple search tool with strong annotations, an output schema, and a schema that documents both parameters, the description is sufficient. It clearly states the search scope and language. The only missing element is explicit usage guidance, but that was already penalized in the usage_guidelines dimension. The tool's simplicity and existing structured data make the description adequate.
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%, with both 'query' and 'limit' already documented. The description's mention of 'Full-text search' and 'Hebrew' does not add any parameter-level meaning beyond the schema's 'free text in Hebrew' example. Baseline of 3 is appropriate since the schema carries the full burden.
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 states a specific verb ('search'), a clear resource ('Israeli law names'), and a language scope ('Hebrew'). It implicitly distinguishes from sibling tools like il_search_law_texts by restricting to names, but it doesn't explicitly say 'for full-text content, use il_search_law_texts'. This is clear but not maximally differentiated.
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 provides no guidance on when to use this tool versus alternatives. It doesn't mention when to prefer il_search_law_texts or il_search_case_law, and lacks any exclusions or context. The only usage hint is the parameter schema's example, but that's not in the description.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
il_search_law_textsARead-onlyIdempotent
Search published Israeli law versions (KNS_Law), including consolidated texts.
Complements il_search_laws: that tool covers the KNS_IsraelLaw registry
(validity status, Basic Law flag), this one covers KNS_Law - the published
versions whose official PDF documents are reachable via
il_get_law_documents. The two id spaces are disjoint.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | max results (default 20). | |
| query | Yes | free text in Hebrew, matched against the published version's name. |
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=false. The description adds meaningful scope (published versions, consolidated texts) and relationship to il_get_law_documents, providing behavioral context beyond 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: a single sentence stating the primary purpose, followed by a sentence explaining the complementarity with il_search_laws. No filler; each sentence carries distinct value.
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?
The description fully equips an agent to select and use the tool. It leverages annotations, full schema coverage, and an output schema, while adding crucial sibling distinctions and workflow relationships. No significant gaps remain.
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 coverage is 100% with descriptions for both query and limit parameters. The tool description itself does not add extra parameter semantics beyond what the schema already provides, so a baseline 3 is appropriate.
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 the tool's action and resource: 'Search published Israeli law versions (KNS_Law), including consolidated texts.' It explicitly differentiates from the sibling il_search_laws by naming the distinct id spaces and registries.
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 explicitly explains when to use this tool versus il_search_laws, noting that il_search_laws covers KNS_IsraelLaw (validity status, Basic Law flag) while this tool covers KNS_Law. It also mentions related tool il_get_law_documents for retrieving PDFs, giving clear workflow context.
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.5.3- Added
il_coverage
5 tool updates
v0.4.2- Added
il_get_law - Added
il_get_law_documents - Added
il_search_case_law - Added
il_search_law_texts - Added
il_search_laws
5 tool updates
v0.4.1- Removed
il_get_law - Removed
il_get_law_documents - Removed
il_search_case_law - Removed
il_search_law_texts - Removed
il_search_laws
2 tool updates
v0.4.0- Added
il_get_law_documents - Added
il_search_law_texts
4 tool updates
v0.2.0- First observed
il_get_case - First observed
il_get_law - First observed
il_search_case_law - First observed
il_search_laws
TDQS
Each tool targets a distinct resource and action: law metadata, law detail, published law texts, law documents, case law search, case detail, and coverage. The overlapping search tools explicitly clarify the disjoint ID spaces and different underlying registries.
All tools follow a consistent `il_` prefix with verb_noun structure: search_laws, get_law, search_law_texts, get_law_documents, search_case_law, get_case. The only outlier `coverage` is a single non-CRUD utility, still readable and consistent with the prefix pattern.
Seven tools is a well-scoped set for a legal research connector, covering both statutory law and case law without unnecessary overlap. Each tool serves a clear purpose and fits within the typical 3-15 tool sweet spot.
The tool surface provides complete search, retrieval, and document access for both laws and cases. The explicit coverage tool acknowledges gaps and offers fallbacks, making the set robust against missing data and reducing dead ends.
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
Resolve, search and verify legal citations against the official sources, with provenance.
Search Swiss federal legislation: laws, articles, amendments via the Fedlex SPARQL endpoint.
Search UK Acts, Statutory Instruments, and legislation with full text retrieval
Official EUR-Lex, UK, US, and gazette search, metadata fetch, and change-only watches.
Related MCP Servers
- FlicenseNot gradedqualityCmaintenanceProvides access to Israel's OpenBudget API, allowing users to query and search various government budget datasets including budget items, contracts, and support payments.12-
- FlicenseAqualityBmaintenanceEnables AI systems to search, retrieve, and analyze Korean legal information from the National Law Information API (law.go.kr), including laws, administrative rules, English translations, and law-ordinance linkages.262-
- AlicenseCqualityAmaintenanceEnables AI assistants to search, discover, and analyze thousands of datasets from Israel's national open data portal. It provides tools for querying government ministries, municipalities, and public bodies using the CKAN API.939108MIT
- AlicenseAqualityBmaintenanceEnables AI assistants to query bills, committees, and members from the Israeli Knesset parliamentary information API via MCP tools.9192MIT
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/il-eli-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server