botindex_hyperliquid_intel
Analyze Hyperliquid funding rates to predict rate persistence and identify optimal entry timing for trading decisions.
Instructions
AI-powered Hyperliquid funding rate intelligence. Rate persistence prediction, optimal entry timing. $0.05
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/index.ts:213-229 (handler)The tool "botindex_hyperliquid_intel" is registered dynamically at runtime by fetching a catalog of tool definitions from the server. The actual handler logic is defined within this loop, calling 'fetchBotindex' with the path derived from the catalog data.
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) }] }; }, );