Skip to main content
Glama

get_overall_market_stats

Retrieve comprehensive Axie Infinity marketplace statistics including new Axies minted, trading volumes in RON and USD, total transactions, and ascended Axies data.

Instructions

Get overall marketplace statistics including new Axies minted, marketplace volumes in RON and USD, total transactions, and ascended Axies.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • The handler logic for the 'get_overall_market_stats' tool, which executes a GraphQL query and returns the market stats.
    case "get_overall_market_stats": {
      const data = await client.query<{ overallMarketStats: unknown }>(
        queries.GET_OVERALL_MARKET_STATS
      );
      return jsonContent(data.overallMarketStats);
    }
  • src/index.ts:253-262 (registration)
    Registration of the 'get_overall_market_stats' tool with its schema and description.
    {
      name: "get_overall_market_stats",
      description:
        "Get overall marketplace statistics including new Axies minted, marketplace volumes in RON and USD, total transactions, and ascended Axies.",
      inputSchema: {
        type: "object",
        properties: {},
        required: [],
      },
    },
  • The GraphQL query definition for 'get_overall_market_stats'.
    export const GET_OVERALL_MARKET_STATS = `
      query GetOverallMarketStats {
        overallMarketStats {
          newAxies { last24H last7D last30D allTime }
          mkpVolume { last24H last7D last30D allTime }
          mkpTxs { last24H last7D last30D allTime }
          mkpVolumeInUsdAllTime
          ascendedAxiesLast7D
        }
      }
    `;

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