Skip to main content
Glama
praveen030686

@praveen030686/data-apis-mcp

crypto_ai_report

Generate AI-powered cryptocurrency investment analysis reports with price action, fundamentals, and outlook insights for informed trading decisions.

Instructions

Get a Claude AI-written investment analysis report for any cryptocurrency. Includes price action, fundamentals, and outlook. Costs $0.25 USDC per request via x402 on Base.

Input Schema

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

Implementation Reference

  • Implementation of the 'crypto_ai_report' tool. It is registered on the server and its handler fetches data from a Crypto API endpoint.
    server.registerTool(
      "crypto_ai_report",
      {
        title: "Get Crypto AI Report",
        description: `Get a Claude AI-written investment analysis report for any cryptocurrency. Includes price action, fundamentals, and outlook.
    Costs $0.25 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/llm-report/${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