crypto_stats
Access crypto intelligence dataset statistics including total signals, executions, active networks, protocols, and date ranges from multi-chain telemetry.
Instructions
Get statistics about the crypto intelligence dataset: total signals, total executions, networks and protocols active, date range. Free endpoint. Source: Liquidationbot multi-chain telemetry.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/tools/crypto.ts:243-264 (handler)Handler for the crypto_stats tool.
async () => { const res = await apiGet<CryptoStatsResponse>("/api/v1/crypto/stats"); if (!res.ok) { return { content: [ { type: "text" as const, text: `API error (${res.status}): ${JSON.stringify(res.data)}`, }, ], isError: true, }; } return { content: [ { type: "text" as const, text: JSON.stringify(res.data, null, 2) }, ], }; }, ); - src/tools/crypto.ts:25-32 (schema)Schema definition for the crypto_stats tool response.
interface CryptoStatsResponse { dataset: string; source: string; update_frequency: string; networks: string[]; products: string[]; stats: Record<string, unknown>; } - src/tools/crypto.ts:233-242 (registration)Registration of the crypto_stats tool.
server.registerTool( "crypto_stats", { title: "Crypto Intelligence Statistics", description: "Get statistics about the crypto intelligence dataset: total signals, " + "total executions, networks and protocols active, date range. Free endpoint. " + "Source: Liquidationbot multi-chain telemetry.", inputSchema: {}, },