Skip to main content
Glama

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
NameRequiredDescriptionDefault
axieIdYesThe numeric ID of the Axie (e.g. '1234567')

Implementation Reference

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

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