botindex_dashboard
Access a comprehensive dashboard to monitor all agents, analyze traces and correlation matrices, and view prediction arbitrage heatmaps for blockchain ecosystem data.
Instructions
Full premium dashboard — all agents, traces, correlation matrices, prediction arb, heatmaps. $0.50
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/index.ts:213-229 (handler)The tool 'botindex_dashboard' is dynamically registered at runtime by fetching a tool catalog from a remote API. This block handles the execution for all dynamic tools, including 'botindex_dashboard'.
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) }] }; }, );