Generates a comprehensive crypto market report using CoinMarketCap MCP data. Use when users ask about overall market conditions, sentiment, or want a summary. Also use for questions about fear/greed, BTC dominance, altcoin season, trending narratives, or general "how's the market" queries. Trigger: "market report", "market overview", "what's happening in crypto", "market sentiment", "fear and greed", "is it altcoin season", "/market-report"
Generate a comprehensive crypto market report by systematically pulling data from multiple CMC MCP tools.
Before generating a report, verify the CMC MCP tools are available. 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
Fetch data from all relevant tools to provide a complete market picture. Users want a one-stop summary they can rely on daily.
Call get_global_metrics_latest to get:
Call get_crypto_marketcap_technical_analysis to get:
Call get_global_crypto_derivatives_metrics to get:
Call trending_crypto_narratives to get:
Call get_upcoming_macro_events to get:
Call get_crypto_quotes_latest with id="1,1027" to get current BTC and ETH prices and changes as anchors for the report.
Present the data in this order:
## Market Snapshot
- Total market cap: $X.XX T (24h: +X.X%)
- Fear & Greed: XX (Extreme Fear/Fear/Neutral/Greed/Extreme Greed)
- BTC Dominance: XX% | ETH Dominance: XX%
- Altcoin Season Index: XX
## BTC & ETH
- BTC: $XX,XXX (24h: X.X%, 7d: X.X%)
- ETH: $X,XXX (24h: X.X%, 7d: X.X%)
## Market Technicals
- RSI: XX (oversold/neutral/overbought)
- MACD: bullish/bearish
- Key levels: support at $X.XX T, resistance at $X.XX T
## Leverage & Sentiment
- Open Interest: $XXX B (24h: X.X%)
- Funding Rate: X.XXX% (longs/shorts paying)
- 24h Liquidations: $XXX M (XX% longs, XX% shorts)
## Trending Narratives
1. Narrative Name - $XX B market cap, +XX% (7d)
2. ...
## Upcoming Catalysts
- Date: Event description
- ...
If individual tools fail during report generation:
Always deliver a partial report with available data rather than no report at all. Clearly note which sections are missing and why.