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
| Name | Required | Description | Default |
|---|---|---|---|
| symbol | Yes | Crypto symbol (e.g., BTC, ETH, SOL) |
Implementation Reference
- src/index.ts:89-103 (handler)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) }] }; } );