Skip to main content
Glama
Cyberweasel777

botindex-mcp-server

botindex_meme_velocity

Detect sudden volume and price spikes for meme tokens across DexScreener, Zora, and Pump.fun to identify emerging market movements.

Instructions

Cross-platform meme token velocity scanner. Detects sudden volume/price spikes across DexScreener, Zora, and Pump.fun. $0.02

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
chainNoFilter chain: base, solana, eth
min_scoreNoMinimum velocity score filter
limitNoMax results (default 200)

Implementation Reference

  • The tool 'botindex_meme_velocity' is dynamically registered at runtime by fetching a catalog from an external URL and iterating through it to register each tool. The handler logic for all these dynamic tools, including 'botindex_meme_velocity', is defined here.
    server.tool(
      tool.name,
      tool.description,
      zodSchema,
      async (args: Record<string, any>) => {
        const params: Record<string, string> = {};
        if (tool.params) {
          for (const p of tool.params) {
            if (args[p.name] !== undefined) {
              params[p.name] = String(args[p.name]);
            }
          }
        }
        const data = await fetchBotindex(tool.path, params);
        return { content: [{ type: 'text', text: toToolText(data) }] };
      },
    );

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/Cyberweasel777/botindex-mcp-server'

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