Skip to main content
Glama

zora_explore_top_volume_24h

Discover coins with the highest trading volume on Zora Coins in the last 24 hours to identify active market trends and opportunities.

Instructions

Coins with highest trading volume in last 24 hours.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
countNo
afterNo

Implementation Reference

  • src/index.ts:297-303 (registration)
    Registers the "zora_explore_top_volume_24h" MCP tool using the exploreTool helper. Specifies the tool name, delegates execution to CoinsSDK.getCoinsTopVolume24h (external SDK function), and provides title and description.
    exploreTool( "zora_explore_top_volume_24h", // @ts-expect-error - TypeScript can't resolve barrel exports properly CoinsSDK.getCoinsTopVolume24h, "Top 24h volume", "Coins with highest trading volume in last 24 hours." );
  • Helper function that performs the actual MCP tool registration (server.registerTool), defines the shared input schema for pagination parameters, and implements the generic handler logic which calls the provided SDK function and serializes the response as MCP-formatted content.
    function exploreTool( name: string, fn: (args: { after?: string; count?: number }) => Promise<unknown>, title: string, description: string ) { server.registerTool( name, { title, description, inputSchema: { count: z.number().int().min(1).max(100).optional(), after: z.string().optional(), }, }, async ({ after, count }) => { const resp = await fn({ after, count }); return { content: [{ type: "text", text: json(resp) }] }; } ); }
  • Input schema defined for the tool: optional 'count' (1-100 integer) for pagination limit, optional 'after' cursor for pagination.
    count: z.number().int().min(1).max(100).optional(), after: z.string().optional(), },

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/r4topunk/zora-coins-mcp-server'

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