region_name_to_id
Convert EVE Online region names into their corresponding IDs using the ESI API. Input an array of up to 500 region names for accurate ID mapping within the 'eve-online-traffic-mcp' server.
Instructions
Convert EVE Online region names to their corresponding IDs using ESI API
Input Schema
Name | Required | Description | Default |
---|---|---|---|
regionNames | Yes | Array of region names to convert to IDs (max 500). Use English proper nouns only (e.g., 'The Forge', 'Domain', 'Sinq Laison') |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"regionNames": {
"description": "Array of region names to convert to IDs (max 500). Use English proper nouns only (e.g., 'The Forge', 'Domain', 'Sinq Laison')",
"items": {
"type": "string"
},
"maxItems": 500,
"minItems": 1,
"type": "array"
}
},
"required": [
"regionNames"
],
"type": "object"
}