get_axie_equipment
Retrieve equipped items and accessories for specified Axies to analyze their current gear configuration and capabilities.
Instructions
Get the equipment and accessories currently equipped on one or more Axies.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| axieIds | Yes | List of Axie IDs to query equipment for (e.g. [1074, 1508]). |
Implementation Reference
- src/index.ts:803-813 (handler)The handler implementation for "get_axie_equipment" in src/index.ts, which processes input arguments and queries the Axie API.
case "get_axie_equipment": { const schema = z.object({ axieIds: jsonArray(z.array(z.coerce.number().int())), }); const { axieIds } = schema.parse(args); const data = await client.query<{ axiesEquipments: unknown }>( queries.GET_AXIE_EQUIPMENT, { axieIds } ); return jsonContent(data.axiesEquipments); } - src/index.ts:436-451 (registration)The tool registration definition for "get_axie_equipment" in src/index.ts.
{ name: "get_axie_equipment", description: "Get the equipment and accessories currently equipped on one or more Axies.", inputSchema: { type: "object", properties: { axieIds: { type: "array", items: { type: "number" }, description: "List of Axie IDs to query equipment for (e.g. [1074, 1508]).", }, }, required: ["axieIds"], }, },