Skip to main content
Glama

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_documents returns 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) and law_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

il_search_laws

Full-text search over law names (registry: status, Basic Law flag)

il_get_law

Full detail for one law by its IsraelLawID

il_search_law_texts

Search published law versions (KNS_Law), incl. consolidated texts

il_get_law_documents

Official PDF documents for a published law (fs.knesset.gov.il)

il_search_case_law

Keyword search over the local corpus of 10,558 judgments

il_get_case

One judgment's full text by judgment_id

il_coverage

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-mcp

Windows 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_mcp

pip.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

IL_ELI_CACHE_DIR

~/.matematic/cache/il-eli

IL_ELI_AUDIT_DIR

~/.matematic/audit

IL_ELI_BASE_URL

https://knesset.gov.il/Odata/ParliamentInfo.svc

License

Apache-2.0 (code). Knesset OData content is official parliamentary publication material (see SOURCES.md).

Available Tools

7 tools
il_coverageA
Read-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.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

Output Schema

ParametersJSON Schema
NameRequiredDescription
statusNo
familiesNo
as_of_noteYesStates what the dates mean, and what they do not promise.
known_gapsNoNever empty. An empty list would mean 'not checked', not 'no gaps'.

TDQS

A4.7/5.0
Behavior5/5

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.

Conciseness5/5

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.

Completeness5/5

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.

Parameters4/5

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.

Purpose5/5

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.

Usage Guidelines4/5

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_caseA
Read-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.

ParametersJSON Schema
NameRequiredDescriptionDefault
judgment_idYesthe dataset's ``judgment_id`` (from `il_search_case_law` results).

Output Schema

ParametersJSON Schema
NameRequiredDescription

No output parameters

TDQS

A4.5/5.0
Behavior4/5

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.

Conciseness5/5

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.

Completeness5/5

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.

Parameters4/5

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.

Purpose5/5

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.

Usage Guidelines4/5

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_lawA
Read-onlyIdempotent

Fetch full detail for one Israeli law by its IsraelLawID.

ParametersJSON Schema
NameRequiredDescriptionDefault
israel_law_idYesthe Knesset OData IsraelLawID (from `il_search_laws`).

Output Schema

ParametersJSON Schema
NameRequiredDescription

No output parameters

TDQS

A4.1/5.0
Behavior3/5

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.

Conciseness5/5

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.

Completeness5/5

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.

Parameters3/5

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.

Purpose5/5

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.

Usage Guidelines4/5

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_documentsB
Read-onlyIdempotent

Official document files (PDFs) for one published law version.

ParametersJSON Schema
NameRequiredDescriptionDefault
law_idYesthe KNS_Law id from `il_search_law_texts` (NOT `israel_law_id`).

Output Schema

ParametersJSON Schema
NameRequiredDescription

No output parameters

TDQS

B3.4/5.0
Behavior3/5

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.

Conciseness5/5

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.

Completeness4/5

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.

Parameters3/5

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.

Purpose4/5

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.

Usage Guidelines2/5

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_lawA
Read-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.

ParametersJSON Schema
NameRequiredDescriptionDefault
courtNooptional substring filter on the court type label (Hebrew), e.g. a fragment of "בית משפט השלום" (Magistrate) or "בית דין לעבודה" (Labor).
limitNomax results (default 20).
queryYesfree text in Hebrew, matched against title/full text/judges/case number.

Output Schema

ParametersJSON Schema
NameRequiredDescription

No output parameters

TDQS

A4.5/5.0
Behavior5/5

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.

Conciseness5/5

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.

Completeness5/5

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.

Parameters3/5

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.

Purpose5/5

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.

Usage Guidelines4/5

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_lawsA
Read-onlyIdempotent

Full-text search over Israeli law names (Hebrew).

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNomax results (default 20).
queryYesfree text in Hebrew, e.g. a keyword from the law's title.

Output Schema

ParametersJSON Schema
NameRequiredDescription

No output parameters

TDQS

A3.6/5.0
Behavior4/5

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.

Conciseness5/5

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.

Completeness4/5

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.

Parameters3/5

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.

Purpose4/5

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.

Usage Guidelines2/5

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_textsA
Read-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.

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNomax results (default 20).
queryYesfree text in Hebrew, matched against the published version's name.

Output Schema

ParametersJSON Schema
NameRequiredDescription

No output parameters

TDQS

A4.5/5.0
Behavior4/5

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.

Conciseness5/5

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.

Completeness5/5

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.

Parameters3/5

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.

Purpose5/5

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.

Usage Guidelines5/5

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. 1 tool updatev0.5.3
    • Addedil_coverage
  2. 5 tool updatesv0.4.2
    • Addedil_get_law
    • Addedil_get_law_documents
    • Addedil_search_case_law
    • Addedil_search_law_texts
    • Addedil_search_laws
  3. 5 tool updatesv0.4.1
    • Removedil_get_law
    • Removedil_get_law_documents
    • Removedil_search_case_law
    • Removedil_search_law_texts
    • Removedil_search_laws
  4. 2 tool updatesv0.4.0
    • Addedil_get_law_documents
    • Addedil_search_law_texts
  5. 4 tool updatesv0.2.0
    • First observedil_get_case
    • First observedil_get_law
    • First observedil_search_case_law
    • First observedil_search_laws

TDQS

A4.2/5.0
Disambiguation5/5

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.

Naming Consistency5/5

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.

Tool Count5/5

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.

Completeness5/5

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

ActivityMaintained
ResponsivenessNo issues

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

Related MCP Servers

  • F
    license
    Not graded
    quality
    C
    maintenance
    Provides access to Israel's OpenBudget API, allowing users to query and search various government budget datasets including budget items, contracts, and support payments.
    12
    -
  • F
    license
    A
    quality
    B
    maintenance
    Enables 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.
    26
    2
    -
  • A
    license
    C
    quality
    A
    maintenance
    Enables 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.
    9
    39
    108
    MIT
  • A
    license
    A
    quality
    B
    maintenance
    Enables AI assistants to query bills, committees, and members from the Israeli Knesset parliamentary information API via MCP tools.
    9
    19
    2
    MIT

Latest Blog Posts

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