get-market-groups
Retrieve grouped market data for specific items and regions in EVE Online. Input a region ID and type ID to access organized market information via the MCP server.
Instructions
Get grouped market data for a region and type
Input Schema
Name | Required | Description | Default |
---|---|---|---|
region_id | Yes | Region ID to get market groups from | |
type_id | Yes | Item type ID to get groups for |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"region_id": {
"description": "Region ID to get market groups from",
"type": "number"
},
"type_id": {
"description": "Item type ID to get groups for",
"type": "number"
}
},
"required": [
"region_id",
"type_id"
],
"type": "object"
}