Crypto Info MCP Server
A minimal, no-friction tool for bringing compact crypto market data into AI agents and applications. Designed for fast retrieval, predictable responses, and straightforward integration.
What You Get
- Live coin price
- 24h turnover
- 24h turnover percentage change
- Market cap
- 24h price change percentage
- 24h high and low
- Recent coin-specific news
All responses are structured for direct use in LLM pipelines.
Available Tools
coin_basic_info
Fetches a compact market snapshot for a specific cryptocurrency.
Input:
json{ "coin": "string", "vs_currency": "string", "news_limit": "number", "news_days": "number" }
Returns:
- Coin metadata
- Current price
- 24h turnover
- 24h turnover percentage change
- Market cap
- 24h price change percentage
- 24h high and low
- Recent related news
How to Use
List available tools
GET /tools
Call a tool
POST /tools/coin_basic_info
MCP endpoint
POST /mcp
Example
Request:
json{ "coin": "btc" }
Endpoint:
POST /tools/coin_basic_info
Example Response
json{ "ok": true, "coin": { "id": "bitcoin", "symbol": "btc", "name": "Bitcoin", "market_cap_rank": 1, "resolved_by": "symbol_exact" }, "results": { "price": 76549, "turnover_24h": 44703321035, "turnover_24h_percentage": 5.8812, "market_cap": 1531629577422, "price_change_percentage_24h": 1.42, "high_24h": 76712, "low_24h": 74828, "news": [ { "title": "Example news title", "url": "https://example.com/news", "source_name": "CoinDesk", "posted_at": "2026-04-21T09:39:06.000Z" } ] } }
Where This Fits
- Crypto research assistants
- Trading dashboards
- Market monitoring workflows
- Finance-focused AI agents
Notes
- Responses are optimized for readability and downstream processing
- Supports both MCP JSON-RPC and REST-style compatibility endpoints
- News is fetched from CoinGecko when available, with RSS fallback for broader coverage
- Best suited for live market lookups and lightweight crypto monitoring
Summary
A focused MCP tool for plugging live crypto market data into AI systems — compact, structured, and built for real usage.
AgenticMarket