Skip to main content
Glama
praveen030686

@praveen030686/data-apis-mcp

crypto_deep_analysis

Analyze cryptocurrency markets with on-chain metrics, whale movements, sentiment breakdown, and risk assessment for informed trading decisions.

Instructions

Get full market analysis including on-chain metrics, whale movements, sentiment breakdown, and risk assessment. Costs $0.10 USDC per request via x402 on Base.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
symbolYesCrypto symbol (e.g., BTC, ETH, SOL)

Implementation Reference

  • The "crypto_deep_analysis" tool is registered and implemented in src/index.ts, fetching data from the CRYPTO_API URL.
      "crypto_deep_analysis",
      {
        title: "Get Crypto Deep Analysis",
        description: `Get full market analysis including on-chain metrics, whale movements, sentiment breakdown, and risk assessment.
    Costs $0.10 USDC per request via x402 on Base.`,
        inputSchema: {
          symbol: z.string().min(1).max(10).describe("Crypto symbol (e.g., BTC, ETH, SOL)"),
        },
        annotations: { readOnlyHint: true, destructiveHint: false, idempotentHint: true, openWorldHint: true },
      },
      async ({ symbol }) => {
        const data = await apiFetch(`${CRYPTO_API}/api/v1/deep-analysis/${symbol.toUpperCase()}`);
        return { content: [{ type: "text", text: JSON.stringify(data, null, 2) }] };
      }
    );

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/praveen030686/x402-apis-mcp-server'

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