find_nearest_landmarks
Locate the closest EVE Online landmarks from a specific solar system, providing sorted results with detailed descriptions and positions. Supports filtering by jump distance and result limit.
Instructions
Find the nearest EVE Online landmarks to a specified solar system. Returns landmarks sorted by distance with detailed information including descriptions and positions.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | Maximum number of landmarks to return (1-50, default: 10) | |
maxJumps | No | Maximum jump distance to search (optional, filters out distant landmarks) | |
system | Yes | Solar system name (English proper noun like 'Jita') or ID to search from |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"limit": {
"default": 10,
"description": "Maximum number of landmarks to return (1-50, default: 10)",
"maximum": 50,
"minimum": 1,
"type": "number"
},
"maxJumps": {
"description": "Maximum jump distance to search (optional, filters out distant landmarks)",
"maximum": 20,
"minimum": 1,
"type": "number"
},
"system": {
"description": "Solar system name (English proper noun like 'Jita') or ID to search from",
"type": [
"string",
"number"
]
}
},
"required": [
"system"
],
"type": "object"
}