Skip to main content
Glama

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
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • 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) },
          ],
        };
      },
    );
  • 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>;
    }
  • 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: {},
      },

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/carrierone/verilexdata-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server