get_axie_children
Retrieve breeding history and offspring details for a specific Axie to analyze lineage and genetic information.
Instructions
Get the children (bred Axies) and parentage information for a given Axie.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| axieId | Yes | The numeric ID of the parent Axie. |
Implementation Reference
- src/index.ts:816-824 (handler)The handler for the 'get_axie_children' tool, which uses the 'GET_AXIE_BREEDS' query to fetch Axie breed information.
case "get_axie_children": { const schema = z.object({ axieId: AxieId }); const { axieId } = schema.parse(args); const data = await client.query<{ axie: unknown }>( queries.GET_AXIE_BREEDS, { axieId } ); return jsonContent(data.axie); } - src/index.ts:452-464 (registration)The registration of the 'get_axie_children' tool in the tool definition list.
{ name: "get_axie_children", description: "Get the children (bred Axies) and parentage information for a given Axie.", inputSchema: { type: "object", properties: { axieId: { type: "string", description: "The numeric ID of the parent Axie.", }, }, required: ["axieId"],