Skip to main content
Glama
Cyberweasel777

botindex-mcp-server

botindex_hl_whale_alerts_full

Monitor Hyperliquid whale positions and large trades to track entry prices, leverage, PnL, and liquidation levels for market analysis.

Instructions

Full Hyperliquid whale positions + recent large trades. Entry prices, leverage, PnL, liquidation levels. $0.05

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • src/index.ts:211-230 (registration)
    The tool "botindex_hl_whale_alerts_full" is not hardcoded but dynamically registered from a remote catalog fetched at runtime via `fetchCatalog()`. The handler is implemented within the dynamic registration loop.
    for (const tool of tools) {
      const zodSchema = buildZodSchema(tool.params);
      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