CoinMarketCap MCP Skill
You have access to CoinMarketCap data through MCP tools. Use these tools to provide comprehensive, data-rich answers to crypto-related questions.
Prerequisites
Before using CMC tools, verify the MCP connection is working. If tools fail or return connection errors, ask the user to set up the MCP connection:
{
"mcpServers": {
"cmc-mcp": {
"url": "https://mcp.coinmarketcap.com/mcp",
"headers": {
"X-CMC-MCP-API-KEY": "your-api-key"
}
}
}
}
Get your API key from https://pro.coinmarketcap.com/login
Core Principle
Err on the side of fetching more data. A complete answer from multiple tools is better than a partial answer that leaves users asking for more. When in doubt, call additional tools to gather comprehensive data.
Workflow
1. Always Search First
When a user mentions a cryptocurrency by name or symbol, search for it first to get the ID:
User: "How is Solana doing?"
→ Call search_cryptos with query "solana"
→ Get ID (e.g., 5426)
→ Then call other tools using that ID
Most tools require the numeric CMC ID, not the name or symbol. The search tool returns: id, name, symbol, slug, and rank.
2. Batch Requests When Useful
When dealing with multiple coins, batch the requests:
User: "Compare BTC, ETH, and SOL"
→ Search for each to get IDs: 1, 1027, 5426
→ Call get_crypto_quotes_latest with id="1,1027,5426"
This is more efficient than separate calls and allows for direct comparison in the response.
3. Match Tools to Query Type
For price and market data:
get_crypto_quotes_latest returns price, market cap, volume, percent changes (1h, 24h, 7d, 30d, 90d, 1y), circulating supply, and dominance
For coin background and links:
get_crypto_info returns description, website, social links, explorer URLs, tags, and launch date
For technical analysis:
get_crypto_technical_analysis returns moving averages (SMA, EMA), MACD, RSI, Fibonacci levels, and pivot points
For recent news:
get_crypto_latest_news returns headlines, descriptions, content, URLs, and publish dates
For holder and distribution data:
get_crypto_metrics returns address counts by holding value, whale vs others distribution, and holder time breakdowns (traders, cruisers, holders)
For concept explanations:
search_crypto_info performs semantic search on crypto concepts, whitepapers, and FAQs
For overall market health:
get_global_metrics_latest returns total market cap, fear/greed index, altcoin season index, BTC/ETH dominance, volume, and ETF flows
For derivatives and leverage data:
get_global_crypto_derivatives_metrics returns open interest, funding rates, liquidations, and futures vs perpetuals breakdown
For total market cap technical analysis:
get_crypto_marketcap_technical_analysis returns TA indicators for the entire crypto market cap
For trending themes:
trending_crypto_narratives returns hot narratives with market cap, volume, performance, and top coins in each narrative
For upcoming catalysts:
get_upcoming_macro_events returns scheduled events like Fed meetings, regulatory deadlines, and major announcements
Error Handling
If search returns no results:
- Report that the coin was not found
- Ask the user to clarify or check the spelling
- Suggest alternatives if the query might be ambiguous
If a tool fails or times out:
- Retry once for transient errors
- If still failing, note which data is unavailable and proceed with other tools
- For price queries,
get_crypto_quotes_latest is critical. If it fails after retry, inform the user data is temporarily unavailable.
- For background queries,
get_crypto_info failure means note "Project info unavailable" and provide what you can from other tools
If rate limited (429 error):
- Inform the user the API is rate limited
- Suggest waiting a moment before retrying
- Consider if fewer tool calls could answer the question
Adapting to User Sophistication
Read context cues from the user's query:
- Casual questions ("how's bitcoin doing?") warrant a clear summary with key numbers
- Technical questions ("what's the RSI on BTC?") can include more detailed data
- Broad questions ("what's happening in crypto?") benefit from market-wide tools like global metrics and trending narratives
1---2name: cmc-mcp3description: Fetches cryptocurrency market data, prices, technical analysis, news, and trends using the CoinMarketCap MCP. Use for ANY question involving cryptocurrencies, tokens, or blockchain markets, even if the user doesn't explicitly ask for data. This includes price checks, portfolio questions, market analysis, coin comparisons, holder metrics, technical indicators, and news. Trigger: "bitcoin", "ETH", "crypto", "token price", "market cap", "how is [coin] doing", "/cmc-mcp"4license: MIT5---67# CoinMarketCap MCP Skill89You have access to CoinMarketCap data through MCP tools. Use these tools to provide comprehensive, data-rich answers to crypto-related questions.1011## Prerequisites1213Before using CMC tools, verify the MCP connection is working. If tools fail or return connection errors, ask the user to set up the MCP connection:1415```json16{17 "mcpServers": {18 "cmc-mcp": {19 "url": "https://mcp.coinmarketcap.com/mcp",20 "headers": {21 "X-CMC-MCP-API-KEY": "your-api-key"22 }23 }24 }25}26```2728Get your API key from https://pro.coinmarketcap.com/login2930## Core Principle3132Err on the side of fetching more data. A complete answer from multiple tools is better than a partial answer that leaves users asking for more. When in doubt, call additional tools to gather comprehensive data.3334## Workflow3536### 1. Always Search First3738When a user mentions a cryptocurrency by name or symbol, search for it first to get the ID:3940```41User: "How is Solana doing?"42→ Call search_cryptos with query "solana"43→ Get ID (e.g., 5426)44→ Then call other tools using that ID45```4647Most tools require the numeric CMC ID, not the name or symbol. The search tool returns: id, name, symbol, slug, and rank.4849### 2. Batch Requests When Useful5051When dealing with multiple coins, batch the requests:5253```54User: "Compare BTC, ETH, and SOL"55→ Search for each to get IDs: 1, 1027, 542656→ Call get_crypto_quotes_latest with id="1,1027,5426"57```5859This is more efficient than separate calls and allows for direct comparison in the response.6061### 3. Match Tools to Query Type6263**For price and market data:**64- `get_crypto_quotes_latest` returns price, market cap, volume, percent changes (1h, 24h, 7d, 30d, 90d, 1y), circulating supply, and dominance6566**For coin background and links:**67- `get_crypto_info` returns description, website, social links, explorer URLs, tags, and launch date6869**For technical analysis:**70- `get_crypto_technical_analysis` returns moving averages (SMA, EMA), MACD, RSI, Fibonacci levels, and pivot points7172**For recent news:**73- `get_crypto_latest_news` returns headlines, descriptions, content, URLs, and publish dates7475**For holder and distribution data:**76- `get_crypto_metrics` returns address counts by holding value, whale vs others distribution, and holder time breakdowns (traders, cruisers, holders)7778**For concept explanations:**79- `search_crypto_info` performs semantic search on crypto concepts, whitepapers, and FAQs8081**For overall market health:**82- `get_global_metrics_latest` returns total market cap, fear/greed index, altcoin season index, BTC/ETH dominance, volume, and ETF flows8384**For derivatives and leverage data:**85- `get_global_crypto_derivatives_metrics` returns open interest, funding rates, liquidations, and futures vs perpetuals breakdown8687**For total market cap technical analysis:**88- `get_crypto_marketcap_technical_analysis` returns TA indicators for the entire crypto market cap8990**For trending themes:**91- `trending_crypto_narratives` returns hot narratives with market cap, volume, performance, and top coins in each narrative9293**For upcoming catalysts:**94- `get_upcoming_macro_events` returns scheduled events like Fed meetings, regulatory deadlines, and major announcements9596## Error Handling9798**If search returns no results:**991. Report that the coin was not found1002. Ask the user to clarify or check the spelling1013. Suggest alternatives if the query might be ambiguous102103**If a tool fails or times out:**1041. Retry once for transient errors1052. If still failing, note which data is unavailable and proceed with other tools1063. For price queries, `get_crypto_quotes_latest` is critical. If it fails after retry, inform the user data is temporarily unavailable.1074. For background queries, `get_crypto_info` failure means note "Project info unavailable" and provide what you can from other tools108109**If rate limited (429 error):**1101. Inform the user the API is rate limited1112. Suggest waiting a moment before retrying1123. Consider if fewer tool calls could answer the question113114## Adapting to User Sophistication115116Read context cues from the user's query:117- Casual questions ("how's bitcoin doing?") warrant a clear summary with key numbers118- Technical questions ("what's the RSI on BTC?") can include more detailed data119- Broad questions ("what's happening in crypto?") benefit from market-wide tools like global metrics and trending narratives