get_tender_details
Fetch detailed information about a specific tender, including dates, guarantees, documents, and administrative details, using the tender ID on the Israeli Land Authority MCP Server.
Instructions
Get comprehensive details for a specific tender by ID
Returns detailed information including dates, guarantees, documents, and administrative details 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"
}