botindex_signals
Access aggregated premium signals including correlation leaders, prediction arbitrage, and market heatmap data to analyze cryptocurrency market trends.
Instructions
Aggregated premium signals: correlation leaders + prediction arbitrage + market heatmap. $0.10
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/index.ts:213-229 (handler)The tool 'botindex_signals' (and others) is dynamically registered and handled here. It fetches the tool catalog from an external API, then iterates through them to register each with the McpServer, using a common fetch handler.
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) }] }; }, );