Israeli Land Authority MCP Server
The Israeli Land Authority MCP Server provides programmatic access to Israeli Land Authority public tender data through direct integration with official government APIs.
Core Capabilities:
Search tenders with comprehensive filters including type, location, status, date ranges, priority populations, and submission deadlines
Retrieve detailed tender information by ID, including administrative details, dates, guarantees, and associated documents
Find active tenders currently open for submissions and recently completed tenders with published results
Access geographic mapping data with location coordinates for specific tenders
Convert Hebrew settlement names to official Kod Yeshuv codes for government system integration
Query static reference data including tender types, regions, land uses, statuses, priority populations, and settlements
Full Hebrew text support with Unicode compatibility for settlement names and search terms
Use Cases: Market analysis, trend monitoring, opportunity discovery, and integration with government systems for real-time tender management.
Includes a Buy Me A Coffee link for supporting the developer of the MCP server.
Hosts the project repository and serves images used in the documentation.
Click on "Deploy 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., "@Israeli Land Authority MCP Serversearch for active residential tenders in Tel Aviv"
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.
Israeli Land Authority (רמ״י) Unofficial MCP Server
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 syncClaude 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.jsonWindows:
%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 filteringget_tender_details- Detailed tender informationget_active_tenders- Currently active tenderssearch_by_type- Type/purpose searchesget_recent_results- Recent tender outcomesget_tender_map_details- Geographic mapping dataget_kod_yeshuv- Convert settlement name to code
Resources (Static Reference Data)
remy://tender-types- All tender typesremy://regions- Israeli regionsremy://land-uses- Land use categoriesremy://tender-statuses- Tender statusesremy://priority-populations- Priority population codesremy://settlements- All settlements with codesremy://server-info- Server capabilities
Technical Details
API Configuration
Base URL:
https://apps.land.gov.il/MichrazimSite/apiRate 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.pyProject 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 dataData 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 toolsget_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.
| Name | Required | Description | Default |
|---|---|---|---|
| max_results | No |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
TDQS
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.
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.
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.
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.
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.
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.
| Name | Required | Description | Default |
|---|---|---|---|
| args | Yes |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
TDQS
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.
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.
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.
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.
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.
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.
| Name | Required | Description | Default |
|---|---|---|---|
| args | Yes |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
TDQS
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.
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.
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.
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.
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.
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.
| Name | Required | Description | Default |
|---|---|---|---|
| args | Yes |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
TDQS
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.
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.
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.
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.
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.
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.
| Name | Required | Description | Default |
|---|---|---|---|
| args | Yes |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
TDQS
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.
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.
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.
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.
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.
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.).
| Name | Required | Description | Default |
|---|---|---|---|
| args | Yes |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
TDQS
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.
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.
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.
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.
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.
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.
| Name | Required | Description | Default |
|---|---|---|---|
| args | Yes |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
TDQS
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.
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.
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.
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.
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.
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.
7 tool updates
- First observed
get_active_tenders - First observed
get_kod_yeshuv - First observed
get_recent_results - First observed
get_tender_details - First observed
get_tender_map_details - First observed
search_by_type - First observed
search_tenders
TDQS
Scored across 7 tools
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.
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.
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.
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
Related MCP Connectors
Israel Government Procurement MCP — public tenders & exemption contracts (keyless).
UK & EU tenders, planning, companies, insolvency, sanctions and debarment as clean JSON APIs.
data.gov.il MCP — Israel national open-data portal (CKAN API).
Brazilian public procurement (PNCP): search, deadlines, tender markdown, alerts and 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-
- FlicenseAqualityNot gradedmaintenanceEnables 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-
- AlicenseNot gradedqualityDmaintenanceEnables searching and analyzing Indian government tenders from multiple portals (CPPP, eProc Rajasthan, Defence) via natural language queries, returning OCDS-compliant data.2MIT
- FlicenseNot gradedqualityCmaintenanceEnables searching and retrieving Russian tenders (закупки) through the Kontur.Zakupki API. Supports filtering by date, text, laws, procedures, statuses, and more.-