Skip to main content
Glama
Cyberweasel777

botindex-mcp-server

botindex_stablecoin_flows

Monitor large USDC and USDT transfers on Base and Ethereum chains, identifying whale, exchange, and bridge movements to track significant stablecoin flows.

Instructions

Large stablecoin transfer monitor for USDC/USDT on Base and Ethereum with whale/exchange/bridge flow labels. $0.02

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
chainNoFilter chain: base, ethereum, all
min_usdNoMinimum transfer size in USD
limitNoMax results (default 50)

Implementation Reference

  • The tool 'botindex_stablecoin_flows' is dynamically registered at runtime based on the tool definition fetched from the catalog API. Its handler logic is defined in the closure above, which calls 'fetchBotindex' with the tool's path and arguments.
    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