TopRank Skills

Home / Claw Skills / API Integration / market-report
Official OpenClaw rules 36%

market-report

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"

Stars

0

Installs

0

Status

ACTIVE

Visibility

PUBLIC

安装方式

直接复制以下提示词,发送给你的 AI 助手即可完成安装。

请先检查是否已安装 SkillHub 商店,若未安装,请根据 https://skillhub-1388575217.cos.ap-guangzhou.myqcloud.com/install/skillhub.md 安装 SkillHub 商店,然后安装 market-report 技能。 若已安装,则直接安装 market-report 技能。

Overview

Skill Key
bryan-cmc/market-report-using-cmc-mcp
Author
bryan-cmc
Source Repo
openclaw/skills
Version
-
Source Path
skills/bryan-cmc/market-report-using-cmc-mcp
Latest Commit SHA
2c0bd581150928cc2ecd2fc7d6c83f74b995468b

Extracted Content

SKILL.md excerpt

# Market Report Skill

Generate a comprehensive crypto market report by systematically pulling data from multiple CMC MCP tools.

## Prerequisites

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:

```json
{
  "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

Fetch data from all relevant tools to provide a complete market picture. Users want a one-stop summary they can rely on daily.

## Report Workflow

### Step 1: Global Market Health

Call `get_global_metrics_latest` to get:
- Total crypto market cap and 24h/7d/30d changes
- Fear & Greed Index (current value and trend)
- Altcoin Season Index
- BTC and ETH dominance
- Total volume
- ETF flows (BTC and ETH)

### Step 2: Market Technical Analysis

Call `get_crypto_marketcap_technical_analysis` to get:
- Total market cap RSI
- MACD signals
- Key support/resistance levels (Fibonacci, pivot points)

### Step 3: Leverage and Derivatives

Call `get_global_crypto_derivatives_metrics` to get:
- Total open interest and changes
- Funding rates (positive = longs paying shorts)
- BTC liquidations (long vs short bias)
- Futures vs perpetuals breakdown

### Step 4: Trending Narratives

Call `trending_crypto_narratives` to get:
- Top trending themes/sectors
- Market cap and performance of each narrative
- Top coins within each narrative

### Step 5: Upcoming Catalysts

Call `get_upcoming_macro_events` to get:
- Fed meetings and rate decisions
- Regulatory deadlines
- Major protocol upgrades
- Other market-moving events

### Step 6: BTC and ETH Quick Check

Call `get_crypto_quotes_latest` with id="1,1027" to get current BTC and ETH prices and changes as anchors for the report.

## Report Structure

Present the data in this order:

`...

Related Claw Skills