Skip to main content
Glama

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
NameRequiredDescriptionDefault
axieIdYesThe numeric ID of the parent Axie.

Implementation Reference

  • 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"],

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/jackdlogan/axie-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server