find_nearest_trade_hub
Locate the closest trade hub from a specified solar system in EVE Online, with detailed route information and options to include secondary hubs and set maximum jumps.
Instructions
Find the nearest trade hub to a specified solar system and provide detailed route information.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
includeSecondaryHubs | No | Whether to include secondary trade hubs in the search | |
maxJumps | No | Maximum number of jumps to consider (1-20) | |
origin | Yes | Origin solar system name (English proper noun like 'Jita') or ID |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"includeSecondaryHubs": {
"default": false,
"description": "Whether to include secondary trade hubs in the search",
"type": "boolean"
},
"maxJumps": {
"description": "Maximum number of jumps to consider (1-20)",
"maximum": 20,
"minimum": 1,
"type": "number"
},
"origin": {
"description": "Origin solar system name (English proper noun like 'Jita') or ID",
"type": [
"string",
"number"
]
}
},
"required": [
"origin"
],
"type": "object"
}