get_tender_map_details
Retrieve geographic coordinates and mapping data for a specific land tender from the Israeli Land Authority MCP Server using the tender ID for location analysis and integration.
Instructions
Get geographic and mapping data for a specific tender
Returns location coordinates and map integration data for the specified tender.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
args | Yes |
Input Schema (JSON Schema)
{
"$defs": {
"TenderDetailsArgs": {
"description": "Arguments for tender details tools",
"properties": {
"michraz_id": {
"description": "The tender ID to get details for",
"title": "Michraz Id",
"type": "integer"
}
},
"required": [
"michraz_id"
],
"title": "TenderDetailsArgs",
"type": "object"
}
},
"properties": {
"args": {
"$ref": "#/$defs/TenderDetailsArgs",
"title": "Args"
}
},
"required": [
"args"
],
"type": "object"
}