Skip to main content
Glama

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
NameRequiredDescriptionDefault
axieIdsYesList of Axie IDs to query equipment for (e.g. [1074, 1508]).

Implementation Reference

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

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