find_stations_with_services
Locate EVE Online stations offering specific services like markets, reprocessing, or cloning in user-defined systems or regions, filtered by security status and limited to actionable results.
Instructions
Find stations that offer specific services within specified systems or regions. Useful for finding trading hubs, reprocessing facilities, or other specialized services.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | Maximum number of stations to return (default: 50, max: 100) | |
requiredServices | Yes | Array of required service names or keywords (e.g., ['market', 'reprocessing', 'cloning']) | |
searchArea | Yes | Area to search for stations (specify either systems or regions or both) | |
securityFilter | No | Optional security status filter |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"limit": {
"default": 50,
"description": "Maximum number of stations to return (default: 50, max: 100)",
"maximum": 100,
"minimum": 1,
"type": "number"
},
"requiredServices": {
"description": "Array of required service names or keywords (e.g., ['market', 'reprocessing', 'cloning'])",
"items": {
"type": "string"
},
"minItems": 1,
"type": "array"
},
"searchArea": {
"additionalProperties": false,
"description": "Area to search for stations (specify either systems or regions or both)",
"properties": {
"regions": {
"description": "Optional array of region names (English proper nouns like 'The Forge', 'Domain') or IDs to search in",
"items": {
"type": [
"string",
"number"
]
},
"type": "array"
},
"systems": {
"description": "Optional array of solar system names (English proper nouns like 'Jita', 'Amarr') or IDs to search in",
"items": {
"type": [
"string",
"number"
]
},
"type": "array"
}
},
"type": "object"
},
"securityFilter": {
"additionalProperties": false,
"description": "Optional security status filter",
"properties": {
"maxSecurity": {
"description": "Maximum security status (e.g., 0.0 for low-sec and below)",
"maximum": 1,
"minimum": -1,
"type": "number"
},
"minSecurity": {
"description": "Minimum security status (e.g., 0.5 for high-sec only)",
"maximum": 1,
"minimum": -1,
"type": "number"
}
},
"type": "object"
}
},
"required": [
"requiredServices",
"searchArea"
],
"type": "object"
}