search_tenders
Find Israeli land tenders by filtering tender types, locations, statuses, dates, and priority populations. Supports Hebrew text and advanced search parameters to locate specific tenders efficiently.
Instructions
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.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
args | Yes |
Input Schema (JSON Schema)
{
"$defs": {
"DateRange": {
"description": "Date range model for search parameters",
"properties": {
"from_date": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Start date (dd/mm/yy format)",
"title": "From Date"
},
"to_date": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "End date (dd/mm/yy format)",
"title": "To Date"
}
},
"title": "DateRange",
"type": "object"
},
"SearchTendersArgs": {
"description": "Arguments for search_tenders tool",
"properties": {
"active_only": {
"default": false,
"description": "Only return active tenders",
"title": "Active Only",
"type": "boolean"
},
"committee_date": {
"anyOf": [
{
"$ref": "#/$defs/DateRange"
},
{
"type": "null"
}
],
"default": null,
"description": "Committee date range (ועדת מכרזים)"
},
"days_back": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": null,
"deprecated": true,
"description": "Legacy: Search tenders from last N days (use date ranges instead)",
"title": "Days Back"
},
"kod_yeshuv": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": null,
"description": "Settlement code (Kod Yeshuv)",
"title": "Kod Yeshuv"
},
"max_results": {
"default": 100,
"description": "Maximum number of results to return",
"title": "Max Results",
"type": "integer"
},
"neighborhood": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Neighborhood name in Hebrew (שכונה)",
"title": "Neighborhood"
},
"priority_populations": {
"anyOf": [
{
"items": {
"type": "integer"
},
"type": "array"
},
{
"type": "null"
}
],
"default": null,
"description": "Priority population codes (אוכלוסיות עדיפות)",
"title": "Priority Populations"
},
"publication_date": {
"anyOf": [
{
"$ref": "#/$defs/DateRange"
},
{
"type": "null"
}
],
"default": null,
"description": "Publication date range (פרסום מכרז)"
},
"purpose": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"deprecated": true,
"description": "Legacy: Land use purpose (use tender_purposes instead)",
"title": "Purpose"
},
"quick_search": {
"default": false,
"description": "Use quick search mode",
"title": "Quick Search",
"type": "boolean"
},
"region": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"deprecated": true,
"description": "Legacy: Region name (use regions instead)",
"title": "Region"
},
"regions": {
"anyOf": [
{
"items": {
"type": "integer"
},
"type": "array"
},
{
"type": "null"
}
],
"default": null,
"description": "List of Rami region IDs (מרחב ברמ\"י)",
"title": "Regions"
},
"settlement": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Settlement name in Hebrew (יישוב)",
"title": "Settlement"
},
"submission_deadline": {
"anyOf": [
{
"$ref": "#/$defs/DateRange"
},
{
"type": "null"
}
],
"default": null,
"description": "Submission deadline date range (מועד אחרון להגשת הצעות)"
},
"tender_number": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Specific tender number to search for (מספר מכרז)",
"title": "Tender Number"
},
"tender_purposes": {
"anyOf": [
{
"items": {
"type": "integer"
},
"type": "array"
},
{
"type": "null"
}
],
"default": null,
"description": "List of tender purpose/designation IDs (ייעוד מכרז)",
"title": "Tender Purposes"
},
"tender_statuses": {
"anyOf": [
{
"items": {
"type": "integer"
},
"type": "array"
},
{
"type": "null"
}
],
"default": null,
"description": "List of tender status IDs (סטטוס המכרז)",
"title": "Tender Statuses"
},
"tender_types": {
"anyOf": [
{
"items": {
"type": "integer"
},
"type": "array"
},
{
"type": "null"
}
],
"default": null,
"description": "List of tender type IDs (סוג המכרז)",
"title": "Tender Types"
}
},
"title": "SearchTendersArgs",
"type": "object"
}
},
"properties": {
"args": {
"$ref": "#/$defs/SearchTendersArgs",
"title": "Args"
}
},
"required": [
"args"
],
"type": "object"
}