system_connection_map
Generate a visual map of system connections in EVE Online by analyzing stargate data for specified solar systems. Input up to 50 system IDs to create a detailed navigation overview.
Instructions
Get a map of system connections by analyzing stargate data for given solar systems
Input Schema
Name | Required | Description | Default |
---|---|---|---|
systemIds | Yes | Array of solar system IDs to generate connection map for (max 50). Use numeric IDs only, not names. Use solar_system_name_to_id tool to convert names to IDs first. |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"systemIds": {
"description": "Array of solar system IDs to generate connection map for (max 50). Use numeric IDs only, not names. Use solar_system_name_to_id tool to convert names to IDs first.",
"items": {
"type": "number"
},
"maxItems": 50,
"minItems": 1,
"type": "array"
}
},
"required": [
"systemIds"
],
"type": "object"
}