find-nearby
Locate features within a specified distance from a given point using spatial queries. Enter coordinates, distance, and table name to retrieve results from a PostGIS database via the MCP protocol.
Instructions
Belirli bir noktanın çevresindeki özellikleri bul
Input Schema
Name | Required | Description | Default |
---|---|---|---|
distance_km | Yes | Arama mesafesi (km) | |
latitude | Yes | Merkez nokta enlem | |
limit | No | Maksimum sonuç sayısı (varsayılan: 10) | |
longitude | Yes | Merkez nokta boylam | |
table_name | Yes | Aranacak tablo adı |
Input Schema (JSON Schema)
{
"properties": {
"distance_km": {
"description": "Arama mesafesi (km)",
"type": "number"
},
"latitude": {
"description": "Merkez nokta enlem",
"type": "number"
},
"limit": {
"description": "Maksimum sonuç sayısı (varsayılan: 10)",
"type": "number"
},
"longitude": {
"description": "Merkez nokta boylam",
"type": "number"
},
"table_name": {
"description": "Aranacak tablo adı",
"type": "string"
}
},
"required": [
"latitude",
"longitude",
"distance_km",
"table_name"
],
"type": "object"
}