get_axie
Retrieve detailed Axie information including stats, parts, abilities, genes, breeding data, listing price, and battle info using the Axie ID.
Instructions
Get detailed information about a single Axie by its ID, including stats, parts, abilities, genes, breeding info, current listing price, and battle info.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| axieId | Yes | The numeric ID of the Axie (e.g. '1234567') |
Implementation Reference
- src/index.ts:586-593 (handler)The handler logic for the 'get_axie' tool, which parses the axieId and queries the client.
case "get_axie": { const schema = z.object({ axieId: AxieId }); const { axieId } = schema.parse(args); const data = await client.query<{ axie: unknown }>(queries.GET_AXIE, { axieId, }); return jsonContent(data.axie); } - src/index.ts:157-173 (registration)The tool definition/registration for 'get_axie' in the toolDefinitions array.
{ name: "get_axie", description: "Get detailed information about a single Axie by its ID, including stats, parts, abilities, genes, breeding info, current listing price, and battle info.", inputSchema: { type: "object", properties: { axieId: { type: "string", description: "The numeric ID of the Axie (e.g. '1234567')", }, }, required: ["axieId"], }, }, { name: "search_axies",