gate-info-coinanalysis
The most frequently used Skill. The user inputs a coin name, the system calls 5 MCP Tools in parallel to fetch fundamentals + market data + technicals + news + social sentiment, then the LLM aggregates the results into a structured analysis report.
Trigger Scenarios: User mentions a specific coin + keywords like analyze, how is, worth, look at, fundamentals, market analysis.
Routing Rules
| User Intent |
Keywords |
Action |
| Single coin comprehensive analysis |
"analyze SOL" "how is BTC" "is ETH worth buying" |
Execute this Skill's full workflow |
| Price only |
"what's BTC price" "ETH current price" |
Do NOT use this Skill — call info_marketsnapshot_get_market_snapshot directly |
| Multi-coin comparison |
"compare BTC and ETH" |
Route to gate-info-coincompare |
| News only |
"any SOL news lately" |
Route to gate-news-briefing |
| Technicals only |
"BTC technical analysis" "what's the RSI" |
Route to gate-info-trendanalysis |
Execution Workflow
Step 1: Intent Recognition & Parameter Extraction
Extract from user input:
symbol: Coin ticker (e.g., BTC, SOL, ETH)
- If the user mentions a project name (e.g., Solana, Uniswap), map it to the ticker symbol
If the coin cannot be identified, ask the user to clarify the coin name — do not guess.
Step 2: Call 5 MCP Tools in Parallel
| Step |
MCP Tool |
Parameters |
Retrieved Data |
Parallel |
| 1a |
info_coin_get_coin_info |
query={symbol}, scope="full" |
Fundamentals: project info, team, funding, sector, tokenomics, unlock schedule |
Yes |
| 1b |
info_marketsnapshot_get_market_snapshot |
symbol={symbol}, timeframe="1d", source="spot" |
Market data: price, 24h/7d change, market cap, OI, funding rate, Fear & Greed Index |
Yes |
| 1c |
info_markettrend_get_technical_analysis |
symbol={symbol} |
Technicals: multi-timeframe signals (RSI zones, MACD cross, MA alignment, support/resistance) |
Yes |
| 1d |
news_feed_search_news |
coin={symbol}, limit=5, sort_by="importance" |
News: top 5 most important recent articles |
Yes |
| 1e |
news_feed_get_social_sentiment |
coin={symbol} |
Social sentiment: Twitter KOL discussion volume, sentiment bias |
Yes |
All 5 Tools are called in parallel with no dependencies. If no news MCP is configured, call only the first 3 Gate-info tools; mark sentiment sections as "No data".
Step 3: LLM Aggregation
Pass all 5 Tool responses to the LLM to generate a structured analysis report.
Step 4: Output Structured Report
Report Template
## {symbol} Comprehensive Analysis
### 1. Fundamentals Overview
| Metric | Value |
|--------|-------|
| Project Name | {project_name} |
| Sector | {category} |
| Market Cap Rank | #{market_cap_rank} |
| Circulating Market Cap | ${market_cap} |
| Fully Diluted Valuation | ${fdv} |
| Total Funding Raised | ${total_funding} |
| Key Investors | {investors} |
{Brief analysis of tokenomics and unlock schedule; flag any upcoming large unlocks}
### 2. Market Data & Technical Analysis
**Current Market Data**
| Metric | Value | Status |
|--------|-------|--------|
| Price | ${price} | — |
| 24h Change | {change_24h}% | {Up/Down/Sideways} |
| 7d Change | {change_7d}% | {Up/Down/Sideways} |
| 24h Volume | ${volume_24h} | {High/Low/Normal} |
| RSI(14) | {rsi} | {Overbought/Oversold/Neutral} |
| Fear & Greed Index | {fear_greed} | {Extreme Fear/Fear/Neutral/Greed/Extreme Greed} |
**Technical Signals**
{Based on info_markettrend_get_technical_analysis multi-timeframe signals, give a Bullish/Bearish/Neutral overall assessment}
- Short-term (1h/4h): {signal}
- Medium-term (1d): {signal}
- Support: ${support}
- Resistance: ${resistance}
### 3. News & Market Sentiment
**Recent Key News**
1. [{title}]({source}) — {summary} ({time})
2. ...
**Social Sentiment**
- Twitter Discussion Volume: {level}
- KOL Sentiment Bias: {Bullish/Bearish/Neutral}
- Sentiment Score: {sentiment_score}
### 4. Overall Assessment
{LLM generates a 3-5 sentence assessment covering:}
- Current market phase for this asset
- Primary drivers (fundamentals / technicals / sentiment)
- Key risks to monitor
### ⚠️ Risk Warnings
{Data-driven risk alerts, e.g.:}
- RSI overbought — elevated short-term pullback risk
- Upcoming large token unlock
- High funding rate — leveraged long crowding
- Low liquidity (if applicable)
> The above analysis is data-driven and does not constitute investment advice. Please make decisions based on your own risk tolerance.
Decision Logic
| Condition |
Assessment |
| RSI > 70 |
Flag "Overbought — elevated short-term pullback risk" |
| RSI < 30 |
Flag "Oversold — potential bounce" |
| 24h volume > 7d avg volume x 2 |
Flag "Significant volume surge" |
| 24h volume < 7d avg volume x 0.5 |
Flag "Notable volume decline" |
| funding_rate > 0.05% |
Flag "High funding rate — long crowding" |
| funding_rate < -0.05% |
Flag "Negative funding rate — short crowding" |
| fear_greed > 75 |
Flag "Extreme Greed — exercise caution" |
| fear_greed < 25 |
Flag "Extreme Fear — potential opportunity" |
| Token unlock in next 30 days > 5% of circulating supply |
Flag "Large upcoming token unlock — potential sell pressure" |
| Any Tool returns empty/error |
Skip that section; note "Data unavailable" in the report |
Error Handling
| Error Type |
Handling |
| Coin does not exist |
Prompt user to verify the coin name; suggest using info_coin_search_coins |
| A single Tool times out |
Skip that dimension; note "This dimension is temporarily unavailable" |
| All Tools fail |
Return error message; suggest the user try again later |
| User inputs multiple coins |
Route to gate-info-coincompare |
| User inputs an address instead of a coin |
Route to gate-info-addresstracker |
Cross-Skill Routing
| User Follow-up Intent |
Route To |
| "Give me a technical analysis" |
gate-info-trendanalysis |
| "Any recent news?" |
gate-news-briefing |
| "What about on-chain data?" |
gate-info-tokenonchain |
| "Is this coin safe?" |
gate-info-riskcheck |
| "Compare XX and YY" |
gate-info-coincompare |
| "Why is it pumping/dumping?" |
gate-news-eventexplain |
Safety Rules
- No investment advice: The overall assessment is data-driven analysis and must include a "not investment advice" disclaimer
- No price predictions: Do not output specific target prices or up/down predictions
- Data transparency: Label data source and update time for each dimension
- Flag missing data: When any dimension has no data, explicitly inform the user — never fabricate data
1---2name: gate-info-coinanalysis-23description: Coin comprehensive analysis. Use this skill whenever the user asks to analyze a single coin. Trigger phrases include: analyze, how is, worth buying, look at. MCP tools: info_coin_get_coin_info, info_marketsnapshot_get_market_snapshot, info_markettrend_get_technical_analysis, news_feed_search_news, news_feed_get_social_sentiment.4---56# gate-info-coinanalysis78> The most frequently used Skill. The user inputs a coin name, the system calls 5 MCP Tools in parallel to fetch fundamentals + market data + technicals + news + social sentiment, then the LLM aggregates the results into a structured analysis report.910**Trigger Scenarios**: User mentions a specific coin + keywords like analyze, how is, worth, look at, fundamentals, market analysis.1112---1314## Routing Rules1516| User Intent | Keywords | Action |17|-------------|----------|--------|18| Single coin comprehensive analysis | "analyze SOL" "how is BTC" "is ETH worth buying" | Execute this Skill's full workflow |19| Price only | "what's BTC price" "ETH current price" | Do NOT use this Skill — call `info_marketsnapshot_get_market_snapshot` directly |20| Multi-coin comparison | "compare BTC and ETH" | Route to `gate-info-coincompare` |21| News only | "any SOL news lately" | Route to `gate-news-briefing` |22| Technicals only | "BTC technical analysis" "what's the RSI" | Route to `gate-info-trendanalysis` |2324---2526## Execution Workflow2728### Step 1: Intent Recognition & Parameter Extraction2930Extract from user input:31- `symbol`: Coin ticker (e.g., BTC, SOL, ETH)32- If the user mentions a project name (e.g., Solana, Uniswap), map it to the ticker symbol3334If the coin cannot be identified, **ask the user to clarify the coin name** — do not guess.3536### Step 2: Call 5 MCP Tools in Parallel3738| Step | MCP Tool | Parameters | Retrieved Data | Parallel |39|------|----------|------------|----------------|----------|40| 1a | `info_coin_get_coin_info` | `query={symbol}, scope="full"` | Fundamentals: project info, team, funding, sector, tokenomics, unlock schedule | Yes |41| 1b | `info_marketsnapshot_get_market_snapshot` | `symbol={symbol}, timeframe="1d", source="spot"` | Market data: price, 24h/7d change, market cap, OI, funding rate, Fear & Greed Index | Yes |42| 1c | `info_markettrend_get_technical_analysis` | `symbol={symbol}` | Technicals: multi-timeframe signals (RSI zones, MACD cross, MA alignment, support/resistance) | Yes |43| 1d | `news_feed_search_news` | `coin={symbol}, limit=5, sort_by="importance"` | News: top 5 most important recent articles | Yes |44| 1e | `news_feed_get_social_sentiment` | `coin={symbol}` | Social sentiment: Twitter KOL discussion volume, sentiment bias | Yes |4546> All 5 Tools are called in parallel with no dependencies. If no news MCP is configured, call only the first 3 Gate-info tools; mark sentiment sections as "No data".4748### Step 3: LLM Aggregation4950Pass all 5 Tool responses to the LLM to generate a structured analysis report.5152### Step 4: Output Structured Report5354---5556## Report Template5758```markdown59## {symbol} Comprehensive Analysis6061### 1. Fundamentals Overview6263| Metric | Value |64|--------|-------|65| Project Name | {project_name} |66| Sector | {category} |67| Market Cap Rank | #{market_cap_rank} |68| Circulating Market Cap | ${market_cap} |69| Fully Diluted Valuation | ${fdv} |70| Total Funding Raised | ${total_funding} |71| Key Investors | {investors} |7273{Brief analysis of tokenomics and unlock schedule; flag any upcoming large unlocks}7475### 2. Market Data & Technical Analysis7677**Current Market Data**7879| Metric | Value | Status |80|--------|-------|--------|81| Price | ${price} | — |82| 24h Change | {change_24h}% | {Up/Down/Sideways} |83| 7d Change | {change_7d}% | {Up/Down/Sideways} |84| 24h Volume | ${volume_24h} | {High/Low/Normal} |85| RSI(14) | {rsi} | {Overbought/Oversold/Neutral} |86| Fear & Greed Index | {fear_greed} | {Extreme Fear/Fear/Neutral/Greed/Extreme Greed} |8788**Technical Signals**8990{Based on info_markettrend_get_technical_analysis multi-timeframe signals, give a Bullish/Bearish/Neutral overall assessment}9192- Short-term (1h/4h): {signal}93- Medium-term (1d): {signal}94- Support: ${support}95- Resistance: ${resistance}9697### 3. News & Market Sentiment9899**Recent Key News**1001011. [{title}]({source}) — {summary} ({time})1022. ...103104**Social Sentiment**105106- Twitter Discussion Volume: {level}107- KOL Sentiment Bias: {Bullish/Bearish/Neutral}108- Sentiment Score: {sentiment_score}109110### 4. Overall Assessment111112{LLM generates a 3-5 sentence assessment covering:}113- Current market phase for this asset114- Primary drivers (fundamentals / technicals / sentiment)115- Key risks to monitor116117### ⚠️ Risk Warnings118119{Data-driven risk alerts, e.g.:}120- RSI overbought — elevated short-term pullback risk121- Upcoming large token unlock122- High funding rate — leveraged long crowding123- Low liquidity (if applicable)124125> The above analysis is data-driven and does not constitute investment advice. Please make decisions based on your own risk tolerance.126```127128---129130## Decision Logic131132| Condition | Assessment |133|-----------|------------|134| RSI > 70 | Flag "Overbought — elevated short-term pullback risk" |135| RSI < 30 | Flag "Oversold — potential bounce" |136| 24h volume > 7d avg volume x 2 | Flag "Significant volume surge" |137| 24h volume < 7d avg volume x 0.5 | Flag "Notable volume decline" |138| funding_rate > 0.05% | Flag "High funding rate — long crowding" |139| funding_rate < -0.05% | Flag "Negative funding rate — short crowding" |140| fear_greed > 75 | Flag "Extreme Greed — exercise caution" |141| fear_greed < 25 | Flag "Extreme Fear — potential opportunity" |142| Token unlock in next 30 days > 5% of circulating supply | Flag "Large upcoming token unlock — potential sell pressure" |143| Any Tool returns empty/error | Skip that section; note "Data unavailable" in the report |144145---146147## Error Handling148149| Error Type | Handling |150|------------|----------|151| Coin does not exist | Prompt user to verify the coin name; suggest using `info_coin_search_coins` |152| A single Tool times out | Skip that dimension; note "This dimension is temporarily unavailable" |153| All Tools fail | Return error message; suggest the user try again later |154| User inputs multiple coins | Route to `gate-info-coincompare` |155| User inputs an address instead of a coin | Route to `gate-info-addresstracker` |156157---158159## Cross-Skill Routing160161| User Follow-up Intent | Route To |162|-----------------------|----------|163| "Give me a technical analysis" | `gate-info-trendanalysis` |164| "Any recent news?" | `gate-news-briefing` |165| "What about on-chain data?" | `gate-info-tokenonchain` |166| "Is this coin safe?" | `gate-info-riskcheck` |167| "Compare XX and YY" | `gate-info-coincompare` |168| "Why is it pumping/dumping?" | `gate-news-eventexplain` |169170---171172## Safety Rules1731741. **No investment advice**: The overall assessment is data-driven analysis and must include a "not investment advice" disclaimer1752. **No price predictions**: Do not output specific target prices or up/down predictions1763. **Data transparency**: Label data source and update time for each dimension1774. **Flag missing data**: When any dimension has no data, explicitly inform the user — never fabricate data