Crypto.com MCP Server
Official Crypto.com MCP server providing real-time cryptocurrency market data: prices, order books, candlestick charts, conversions, and trading volumes.
Crypto Market Data by Crypto.com is an officially hosted remote MCP server that connects AI assistants such as Claude and ChatGPT directly to Crypto.com's live cryptocurrency market data. Launched on October 31, 2025, it was announced as the first AI LLM-integrated MCP from a major cryptocurrency exchange. The server is provider-hosted at https://mcp.crypto.com/market-data/mcp and requires no installation, no account, and no API key.
The MCP exposes public market data only, including current price quotes, 24-hour trading volumes, order books, price conversions, candlestick chart data, market trends, and top cryptocurrencies across hundreds of digital assets like Bitcoin and Ethereum. It is strictly read-only and does not access user conversations, personal information, or trading accounts.
Because it is hosted directly by Crypto.com over HTTPS, setup consists of a single JSON entry in the Claude Desktop or ChatGPT configuration. This makes it one of the lowest-friction ways to give an AI assistant up-to-the-minute crypto market awareness without managing API credentials or rate limits.
Tools
| Tool | Description |
|---|---|
market data query |
The server exposes market data tools accessible through natural-language queries. Specific tool names are not enumerated in the public documentation, but capabilities include current prices, 24h volumes, market caps, price changes, conversions, order books, candlestick data, and trending coins. |
Prerequisites
- Claude Desktop, ChatGPT, or another MCP-compatible client
- Internet connection
- No API key, no account, no payment required
Claude Desktop configuration
Open your claude_desktop_config.json file:
- macOS:
~/Library/Application Support/Claude/claude_desktop_config.json - Windows:
%APPDATA%\Claude\claude_desktop_config.json - Linux:
~/.config/Claude/claude_desktop_config.json
Add the following entry:
{
"mcpServers": {
"crypto-market-data": {
"type": "http",
"url": "https://mcp.crypto.com/market-data/mcp"
}
}
}
Save the file, fully quit Claude Desktop, then relaunch it. Verify the connection by asking something like, "What is the current price of Bitcoin?"
ChatGPT and other clients
The same HTTP endpoint (https://mcp.crypto.com/market-data/mcp) can be added to any MCP-compatible client. Refer to the official setup pages at mcp.crypto.com/docs for client-specific steps.
- Ask an AI assistant for live BTC, ETH, or altcoin prices instead of relying on stale model training data.
- Compare 24-hour trading volumes and price changes across multiple coins inside a chat session.
- Pull candlestick or order book snapshots for ad-hoc technical analysis prompts.
- Convert amounts between fiat and crypto (or between crypto pairs) using current market rates.
- Generate market summaries or "what's trending" briefings during research and reporting workflows.
- "What is the current price of Bitcoin and how has it changed over the last 24 hours?"
- "Show me the top 10 cryptocurrencies by 24h trading volume right now."
- "Convert 2.5 ETH to USD at the current market price."
- "Compare the 7-day price change between Solana, Avalanche, and Polkadot."
- "Give me the latest order book snapshot for BTC/USDT."
- Officially operated by Crypto.com, so data sourcing and uptime are managed by the exchange itself.
- Zero setup friction: no account, no API key, no installation, just a URL.
- Remote HTTP transport works out of the box with Claude Desktop, ChatGPT, and other MCP clients.
- Covers a broad set of market data primitives including prices, volumes, order books, and candlesticks.
- Read-only public market data only. No portfolio, account, or trade-execution capabilities despite the "Crypto.com" branding.
- Individual MCP tool names and parameter schemas are not publicly enumerated in the docs, making programmatic discovery harder.
- As a hosted service, you depend on Crypto.com's availability and any future rate limits or policy changes.
- CoinGecko MCP server for broad cross-exchange market data
- CCXT-based MCP servers for multi-exchange data via the CCXT library
- CoinMarketCap API wrapped as a custom MCP server for similar pricing data