NativeAIHub
CoinMarketCap

CoinMarketCap

Real time crypto prices, market cap data, technical analysis, trending narratives, and upcoming macro events.

MCP Serverยท3 sectionsยท1 min read
financeresearch
Install Prompt

Paste this into Claude Code to set it up:

I want to add the CoinMarketCap MCP Server to my Claude Code setup.

IMPORTANT: Never use Read/Edit tools on ~/.claude.json. Use jq via Bash instead.

Prerequisites: You need a CoinMarketCap API key. Sign up at pro.coinmarketcap.com and grab your key from the developer portal. The free tier includes 10,000 API calls per month.

Run this command to add the MCP server (replace your-api-key with your actual key):
```bash
jq '.mcpServers["coinmarketcap"] = {"type": "stdio", "command": "npx", "args": ["-y", "coinmarketcap-mcp-server"], "env": {"CMC_API_KEY": "your-api-key"}}' ~/.claude.json > /tmp/claude-json-tmp && mv /tmp/claude-json-tmp ~/.claude.json
```

After adding, restart Claude Code. The server connects to the CoinMarketCap API and gives the agent access to real time crypto data, technical analysis, and market insights.

01What It Does

Crypto market intelligence from your terminal

CoinMarketCap is the most widely referenced source for cryptocurrency market data. The MCP server gives your AI agent direct access to real time prices, market capitalizations, technical indicators, trending narratives, and upcoming macro events. Whether you are checking a quick price or doing deep research on market trends, the agent can pull accurate data without you leaving the terminal.
๐Ÿ“ˆ
Prices and Market DataGet real time quotes for any cryptocurrency. View price, volume, market cap, circulating supply, and percentage changes across multiple timeframes.
๐Ÿ“Š
Technical AnalysisAccess technical analysis indicators and market cap based analysis. Understand momentum, trends, and key support/resistance levels.
๐Ÿ”ฅ
Trends and EventsDiscover trending crypto narratives and upcoming macro events that could impact the market. Stay ahead of market movements.

02Setup

# Add to ~/.claude.json under mcpServers
"coinmarketcap": {
  "type": "stdio",
  "command": "npx",
  "args": ["-y", "coinmarketcap-mcp-server"],
  "env": {
    "CMC_API_KEY": "your-api-key"
  }
}
The free CoinMarketCap API tier provides 10,000 calls per month, which is sufficient for regular personal use. Paid plans offer higher rate limits and additional endpoints like historical data and advanced analytics.

03Available Tools

๐Ÿ”
Search and DiscoverySearch for cryptocurrencies by name or symbol. Get detailed info on any token including description, website, social links, and contract addresses.
๐ŸŒ
Global MetricsView total market capitalization, Bitcoin dominance, DeFi market size, and global derivatives metrics across the entire crypto market.
๐Ÿ“ฐ
News and NarrativesAccess the latest crypto news, trending market narratives, and upcoming macro events like Fed meetings, ETF deadlines, and protocol upgrades.