Skip to main content
Glama
barvhaim

Israeli Land Authority MCP Server

by barvhaim

Israeli Land Authority (רמ״י) Unofficial MCP Server

Buy Me A Coffee

A Model Context Protocol (MCP) server that provides programmatic access to Israeli Land Authority (רמ״י) public tender data.

Features

  • Comprehensive Search: Advanced filtering by type, location, status, and dates

  • Real-time Data: Direct access to live government APIs

  • Hebrew Support: Full Unicode support for Hebrew text and settlement names

  • MCP Protocol: Optimized with tools for dynamic operations and resources for static data

  • Type Safety: Full Pydantic model validation

  • Rate Limiting: Built-in request throttling and retry logic

Related MCP server: Taiwan Tender MCP

Quick Start

Installation

# Clone the repository
git clone https://github.com/barvhaim/remy-mcp
cd remy-mcp

# Install dependencies
uv sync

Claude Desktop Integration

To add this server to Claude Desktop, update your MCP servers configuration:

Configuration file location:

  • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json

  • Windows: %APPDATA%/Claude/claude_desktop_config.json

Add this configuration:

{
  "mcpServers": {
    "israeli-land-authority": {
      "command": "uv",
      "args": [
        "--directory",
        "/path/to/remy-mcp",
        "run",
        "main.py"
      ]
    }
  }
}

Replace /path/to/remy-mcp with the actual path to your cloned repository.

After adding the configuration and restarting Claude Desktop, you'll have access to all Israeli Land Authority functions directly within your conversations.

Available Functions

Tools (Dynamic Operations)

  • search_tenders - Comprehensive search with filtering

  • get_tender_details - Detailed tender information

  • get_active_tenders - Currently active tenders

  • search_by_type - Type/purpose searches

  • get_recent_results - Recent tender outcomes

  • get_tender_map_details - Geographic mapping data

  • get_kod_yeshuv - Convert settlement name to code

Resources (Static Reference Data)

  • remy://tender-types - All tender types

  • remy://regions - Israeli regions

  • remy://land-uses - Land use categories

  • remy://tender-statuses - Tender statuses

  • remy://priority-populations - Priority population codes

  • remy://settlements - All settlements with codes

  • remy://server-info - Server capabilities

Technical Details

API Configuration

  • Base URL: https://apps.land.gov.il/MichrazimSite/api

  • Rate Limiting: 1-second delay between requests

  • Encoding: UTF-8 for Hebrew text support

Dependencies

  • Python: 3.11+

  • FastMCP: MCP server framework

  • Pydantic: Data validation and modeling

  • Requests: HTTP client with retry logic

Data Handling

  • Hebrew text in UTF-8 encoding

  • Israeli timezone (UTC+3) for dates

  • Structured responses with error handling

  • Type-safe Pydantic models

Development

Code Formatting

uv run black .

Testing

python example_usage.py

Project Structure

src/remy_mcp/
├── server.py              # Main server entry point
├── client/                # API client layer
├── models/                # Data models and validation
├── tools/                 # MCP tools (dynamic operations)
├── resources/             # MCP resources (static data)
└── utils/                 # Helper utilities

examples/                  # Usage examples
tests/                    # Test suite
docs/                     # API documentation
data/                     # Reference data

Data Source

This server accesses public data from the Israeli Land Authority (רשות מקרקעי ישראל) via their official APIs. All data is publicly available and no authentication is required.

Official Website: https://apps.land.gov.il/MichrazimSite/

License

This project provides access to public government data for research and analysis purposes.

Available Tools

7 tools
get_active_tendersB

Get all currently active land tenders

Returns a list of tenders that are currently open for submissions, useful for finding current bidding opportunities.

ParametersJSON Schema
NameRequiredDescriptionDefault
max_resultsNo

Output Schema

ParametersJSON Schema
NameRequiredDescription

No output parameters

TDQS

B3.4/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries the full burden. It states the tool returns 'a list of tenders that are currently open for submissions', which clarifies the output behavior. However, it lacks details on permissions, rate limits, pagination (beyond the max_results parameter), or error handling, which are important for a tool with no annotation coverage.

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 appropriately sized and front-loaded: the first sentence states the core purpose, and the second adds context without redundancy. Both sentences earn their place by clarifying scope and utility, with zero wasted words.

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 tool's complexity (simple read operation), no annotations, and the presence of an output schema (which handles return values), the description is reasonably complete. It specifies the resource (land tenders), state (active), and purpose (finding bidding opportunities), though it could benefit from more behavioral details like permissions or limitations.

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 has 1 parameter with 0% description coverage, and the tool description does not mention any parameters. Since the schema coverage is low, the description should compensate but fails to do so. The baseline is 3 because the schema provides some structure, but the description adds no parameter-specific information beyond what's implied by the tool's purpose.

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 states the tool's purpose: 'Get all currently active land tenders' specifies both the verb (get) and resource (land tenders). It distinguishes from siblings by focusing on 'active' tenders, though it doesn't explicitly contrast with tools like 'get_recent_results' or 'search_tenders'.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies usage context: 'useful for finding current bidding opportunities' suggests when to use it. However, it doesn't provide explicit guidance on when to choose this tool over alternatives like 'search_tenders' or 'get_recent_results', nor does it mention any exclusions or prerequisites.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

get_kod_yeshuvA

Get Kod Yeshuv (settlement code) from Hebrew settlement name

Returns the official settlement code used by Israeli authorities for the given settlement name. Useful for integration with other Israeli government systems.

ParametersJSON Schema
NameRequiredDescriptionDefault
argsYes

Output Schema

ParametersJSON Schema
NameRequiredDescription

No output parameters

TDQS

A4.2/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries full burden. It describes the core behavior (lookup/translation) and mentions the integration use case, but doesn't disclose error handling, rate limits, authentication needs, or what happens with invalid inputs. It adds some context but leaves significant behavioral aspects unspecified.

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 perfectly structured with two focused sentences: the first states the core functionality, the second explains the practical application. Every word earns its place with zero redundancy or unnecessary elaboration.

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 tool's simple nature (single parameter lookup), the presence of an output schema (which handles return values), and the clear purpose statement, the description is reasonably complete. However, it could benefit from mentioning potential edge cases or error scenarios for a tool with no annotations.

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?

With 0% schema description coverage and only 1 parameter, the description compensates well by explaining the parameter's purpose ('Hebrew settlement name to get the Kod Yeshuv for') and context. It adds meaningful semantics beyond what the bare schema provides, though it doesn't specify format requirements or character encoding details.

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 purpose with specific verb ('Get') and resource ('Kod Yeshuv'), and distinguishes it from sibling tools by focusing on settlement code lookup rather than tender-related operations. It explains what the tool does in concrete terms: converting Hebrew settlement names to official settlement codes.

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 provides clear context about when to use this tool ('for integration with other Israeli government systems'), but doesn't explicitly state when NOT to use it or mention alternatives. It distinguishes from siblings by focusing on settlement codes rather than tenders, though not through explicit comparison.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

get_recent_resultsB

Get tenders with results from recent days

Find completed tenders with published results for market analysis and trend monitoring.

ParametersJSON Schema
NameRequiredDescriptionDefault
argsYes

Output Schema

ParametersJSON Schema
NameRequiredDescription

No output parameters

TDQS

B3.1/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries the full burden of behavioral disclosure. It indicates the tool retrieves data ('get', 'find') and implies read-only behavior by focusing on 'completed tenders with published results,' but doesn't specify critical details like authentication requirements, rate limits, pagination, error handling, or data freshness. For a tool with no annotation coverage, this is a significant gap in transparency.

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 highly concise and well-structured, consisting of two sentences that efficiently convey the tool's purpose and use case. The first sentence states the core functionality, and the second adds context without redundancy. Every sentence earns its place, making it front-loaded and easy to parse.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool's moderate complexity (1 parameter, no annotations, but with an output schema), the description is partially complete. It covers the basic purpose and use case, but lacks details on behavior, parameters, and usage guidelines. The presence of an output schema reduces the need to explain return values, but the description doesn't fully compensate for missing annotations and low parameter coverage, leaving gaps for effective tool invocation.

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 has 1 parameter ('days') with 0% description coverage in the schema itself. The description adds some context by implying a time-based filter ('recent days'), but doesn't explain the parameter's semantics beyond that. It doesn't clarify the default value, valid ranges, or how 'days' interacts with the query. With low schema coverage, the description compensates minimally, meeting the baseline for adequate but incomplete parameter information.

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 states the tool's purpose: 'Get tenders with results from recent days' and 'Find completed tenders with published results for market analysis and trend monitoring.' It specifies the verb ('get', 'find'), resource ('tenders with results', 'completed tenders'), and scope ('recent days', 'published results'). However, it doesn't explicitly differentiate from sibling tools like 'get_active_tenders' or 'search_tenders', which likely have overlapping domains.

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 mentions use cases ('market analysis and trend monitoring') but doesn't specify prerequisites, exclusions, or compare to sibling tools like 'get_active_tenders' (which might fetch ongoing tenders) or 'search_tenders' (which could have broader filtering). This leaves the agent to infer usage context without explicit direction.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

get_tender_detailsB

Get comprehensive details for a specific tender by ID

Returns detailed information including dates, guarantees, documents, and administrative details for the specified tender.

ParametersJSON Schema
NameRequiredDescriptionDefault
argsYes

Output Schema

ParametersJSON Schema
NameRequiredDescription

No output parameters

TDQS

B3.2/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries the full burden of behavioral disclosure. It mentions the tool 'Returns detailed information' and lists some data types (dates, guarantees, documents, administrative details), but doesn't cover critical aspects like authentication requirements, rate limits, error handling, or whether it's a read-only operation. The output schema exists, but the description doesn't hint at response structure beyond the listed categories.

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 efficiently structured in two sentences: the first states the core purpose, and the second elaborates on return values. Every phrase adds value without redundancy, and it's front-loaded with the key action ('Get comprehensive details').

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool's moderate complexity (single parameter, no annotations, but with an output schema), the description is partially complete. It covers the basic purpose and return categories, but lacks usage guidelines, behavioral details, and deeper parameter context. The output schema mitigates some gaps, but the description should do more to compensate for missing annotations.

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 description adds meaningful context beyond the input schema, which has 0% description coverage. It clarifies that the tool requires 'a specific tender by ID', implicitly explaining the 'michraz_id' parameter's purpose as a unique identifier. However, it doesn't detail parameter constraints (e.g., ID format or range) or provide examples.

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 states the tool's purpose with a specific verb ('Get') and resource ('comprehensive details for a specific tender by ID'), distinguishing it from siblings like 'get_active_tenders' or 'search_tenders' that handle multiple tenders. However, it doesn't explicitly differentiate from 'get_tender_map_details', which might be a similar single-tender lookup tool.

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 'get_active_tenders' or 'search_tenders'. It mentions 'by ID' but doesn't clarify prerequisites (e.g., needing a known tender ID) or exclusions (e.g., not for searching by other criteria).

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

get_tender_map_detailsB

Get geographic and mapping data for a specific tender

Returns location coordinates and map integration data for the specified tender.

ParametersJSON Schema
NameRequiredDescriptionDefault
argsYes

Output Schema

ParametersJSON Schema
NameRequiredDescription

No output parameters

TDQS

B3.1/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries full burden for behavioral disclosure. It states the tool returns 'location coordinates and map integration data' but doesn't describe format, accuracy, or limitations. It doesn't mention whether this is a read-only operation, potential rate limits, authentication needs, or error conditions. For a tool with no annotations, this leaves significant behavioral gaps.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is appropriately concise with two sentences that efficiently state purpose and return values. The first sentence clearly establishes what the tool does, and the second specifies the output. There's no wasted text, though it could be slightly more structured with explicit separation of purpose and behavior.

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 tool has an output schema (which handles return value documentation), the description's job is lighter. It adequately covers the core purpose and output types. However, for a tool with no annotations and 0% schema parameter coverage, it should ideally provide more parameter guidance and behavioral context to be fully complete.

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 0% (the parameter 'michraz_id' has no description in the schema), but the description doesn't compensate by explaining the parameter. It mentions 'for the specified tender' which implies a tender identifier is needed, but doesn't clarify what 'michraz_id' represents or provide format examples. With one undocumented parameter and no compensation in the description, this meets the baseline for minimal viability.

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 states the tool's purpose: 'Get geographic and mapping data for a specific tender' specifies the verb (get), resource (geographic and mapping data), and scope (for a specific tender). It distinguishes from siblings like 'get_tender_details' by focusing on geographic/mapping aspects rather than general details. However, it doesn't explicitly contrast with all siblings, so it's not a perfect 5.

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 this tool is appropriate versus 'get_tender_details' (which might return different data) or 'search_tenders' (which might find tenders before getting map details). There's no context about prerequisites or exclusions, leaving the agent to guess based on tool names alone.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

search_by_typeB

Search tenders by type or land use purpose

Find tenders of specific types (residential, commercial, etc.) or purposes (low-rise construction, offices, etc.).

ParametersJSON Schema
NameRequiredDescriptionDefault
argsYes

Output Schema

ParametersJSON Schema
NameRequiredDescription

No output parameters

TDQS

B3.3/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries full burden for behavioral disclosure. It states this is a search operation but doesn't mention whether it's read-only, has rate limits, requires authentication, returns paginated results, or what happens with invalid inputs. For a search tool with zero annotation coverage, this leaves significant behavioral gaps.

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 efficiently structured in two sentences: first states the core purpose, second provides clarifying examples. Every sentence adds value with zero wasted words, making it appropriately front-loaded and concise.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool has an output schema (which handles return values), no annotations, and moderate complexity with 3 parameters, the description provides basic purpose and examples but lacks behavioral context, complete parameter guidance, and sibling differentiation. It's minimally adequate but has clear gaps in completeness.

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 0%, so the description must compensate. It mentions 'type or land use purpose' which maps to two of the three parameters (tender_types, purpose) but doesn't mention 'active_only'. The description adds some semantic context but doesn't fully compensate for the schema coverage gap, especially for the boolean filter parameter.

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 states the tool's purpose: 'Search tenders by type or land use purpose' with specific examples (residential, commercial, low-rise construction, offices). It distinguishes itself from generic search by focusing on type/purpose filtering, though it doesn't explicitly differentiate from sibling 'search_tenders'.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies usage context ('Find tenders of specific types or purposes') but doesn't explicitly state when to use this tool versus alternatives like 'search_tenders' or 'get_active_tenders'. It provides general guidance but lacks explicit comparisons or exclusions.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

search_tendersB

Search for land tenders from the Israeli Land Authority

Enhanced search with comprehensive filtering options including tender types, locations, statuses, date ranges, and priority populations. Supports Hebrew text and backward compatibility.

ParametersJSON Schema
NameRequiredDescriptionDefault
argsYes

Output Schema

ParametersJSON Schema
NameRequiredDescription

No output parameters

TDQS

B3.2/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries full burden for behavioral disclosure. It mentions 'backward compatibility' and 'Supports Hebrew text', which adds some context about language support and legacy features. However, it doesn't describe important behavioral aspects like whether this is a read-only operation, pagination behavior, rate limits, authentication needs, or what happens when no results are found. For a search tool with no annotation coverage, this leaves significant gaps.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is appropriately sized with three sentences that each add value: establishes the core purpose, details filtering capabilities, and mentions language/backward compatibility. It's front-loaded with the main purpose and efficiently structured without wasted words. Could be slightly more concise by combining the second and third sentences, but overall well-structured.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool has an output schema (which handles return values), no annotations, and 0% schema description coverage, the description provides adequate but incomplete context. It covers the purpose and high-level filtering capabilities well, but lacks guidance on when to use vs. siblings, behavioral details, and deeper parameter semantics. For a search tool with many parameters and no annotations, it should do more to compensate for the schema gaps.

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 0%, so the description must compensate. It mentions 'comprehensive filtering options including tender types, locations, statuses, date ranges, and priority populations', which provides high-level semantic context for many parameters. However, it doesn't explain specific parameter meanings, relationships, or usage patterns beyond this broad categorization. The description adds meaningful context but doesn't fully compensate for the complete lack of schema descriptions.

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 states the verb 'search' and resource 'land tenders from the Israeli Land Authority', providing a specific purpose. It distinguishes from siblings like 'get_active_tenders' by mentioning 'comprehensive filtering options', but doesn't explicitly name alternatives. The purpose is clear but sibling differentiation is implied rather than explicit.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies usage through 'Enhanced search with comprehensive filtering options', suggesting this is for detailed searches, but doesn't explicitly state when to use this vs. simpler siblings like 'get_active_tenders' or 'search_by_type'. No explicit alternatives or exclusions are provided, leaving usage context somewhat implied rather than clearly defined.

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.

  1. 7 tool updates
    • First observedget_active_tenders
    • First observedget_kod_yeshuv
    • First observedget_recent_results
    • First observedget_tender_details
    • First observedget_tender_map_details
    • First observedsearch_by_type
    • First observedsearch_tenders

TDQS

A3.7/5.0

Scored across 7 tools

Disambiguation5/5

Every tool has a clearly distinct purpose with no overlap: get_active_tenders retrieves open tenders, get_kod_yeshuv maps settlement names to codes, get_recent_results fetches completed tenders, get_tender_details provides comprehensive tender information, get_tender_map_details offers geographic data, search_by_type filters by land use, and search_tenders enables advanced filtering. The descriptions reinforce these unique roles, eliminating any ambiguity.

Naming Consistency5/5

All tool names follow a consistent verb_noun pattern using snake_case: get_active_tenders, get_kod_yeshuv, get_recent_results, get_tender_details, get_tender_map_details, search_by_type, and search_tenders. This uniformity makes the tools predictable and easy to understand, with no deviations in naming conventions.

Tool Count5/5

With 7 tools, the server is well-scoped for its purpose of accessing Israeli land authority data. Each tool earns its place by covering distinct aspects such as tender retrieval, settlement coding, results monitoring, detailed views, mapping, and search functionalities, avoiding both bloat and insufficiency.

Completeness4/5

The tool set provides strong coverage for querying and analyzing land tenders, including active, recent, and detailed views, plus mapping and search capabilities. A minor gap exists in lifecycle operations like creating or updating tenders, but this is likely intentional given the server's focus on read-only public data access, and agents can work effectively within this scope.

Maintenance

ActivityInactive
ResponsivenessNo issues

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
    Not graded
    maintenance
    Enables users to search and retrieve detailed information about Taiwan government procurement tenders through the Government Electronic Procurement System API. It supports searching tenders by keyword, category code, date, and government unit.
    6
    -
  • A
    license
    Not graded
    quality
    D
    maintenance
    Enables searching and analyzing Indian government tenders from multiple portals (CPPP, eProc Rajasthan, Defence) via natural language queries, returning OCDS-compliant data.
    2
    MIT
  • F
    license
    Not graded
    quality
    C
    maintenance
    Enables searching and retrieving Russian tenders (закупки) through the Kontur.Zakupki API. Supports filtering by date, text, laws, procedures, statuses, and more.
    -

Appeared in Searches