TopRank Skills

Home / Claw Skills / Finance / Cryptographie / crypto-research
Official OpenClaw rules 54%

crypto-research

Performs comprehensive due diligence on a cryptocurrency using CoinMarketCap MCP data. Use when users ask about a specific coin beyond just its price. This includes questions like "what is [coin]", "is [coin] legit", "analyze [coin]", tokenomics questions, holder distribution, or any request for deep information about a single cryptocurrency. Trigger: "research [coin]", "tell me about [coin]", "should I invest in [coin]", "DYOR [coin]", "is [coin] safe", "/crypto-research"

Stars

0

Installs

0

Status

ACTIVE

Visibility

PUBLIC

安装方式

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

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

Overview

Skill Key
bryan-cmc/crypto-research-using-cmc-mcp
Author
bryan-cmc
Source Repo
openclaw/skills
Version
-
Source Path
skills/bryan-cmc/crypto-research-using-cmc-mcp
Latest Commit SHA
b40bde41d1d7214315415c400caa0bae987faf47

Extracted Content

SKILL.md excerpt

# Crypto Research Skill

Perform comprehensive due diligence on any cryptocurrency by systematically gathering and analyzing data from multiple CMC MCP tools.

## Prerequisites

Before starting research, 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

Thorough research requires looking at a token from multiple angles. Fetch all relevant data before forming conclusions. Surface both green flags and red flags.

## Research Workflow

### Step 1: Identify the Token

Call `search_cryptos` with the token name/symbol to get the CMC ID. If multiple results, clarify with the user which one they mean.

### Step 2: Basic Information

Call `get_crypto_info` to get:
- Project description and category
- Launch date
- Website, social links, documentation
- Tags (DeFi, Layer 1, Meme coin, etc.)

### Step 3: Market Data

Call `get_crypto_quotes_latest` to get:
- Current price and market cap
- 24h, 7d, 30d, 90d, 1y price changes
- Trading volume and volume change
- Circulating supply vs max supply
- Market cap rank

### Step 4: Holder Analysis

Call `get_crypto_metrics` to get:
- Address distribution by holding value ($0-1k, $1k-100k, $100k+)
- Whale concentration (% held by top holders)
- Holder behavior (traders vs cruisers vs long-term holders)

### Step 5: Technical Analysis

Call `get_crypto_technical_analysis` to get:
- Moving averages (7d, 30d, 200d SMA/EMA)
- RSI (oversold < 30, overbought > 70)
- MACD signal
- Fibonacci levels and pivot points

### Step 6: Recent News

Call `get_crypto_latest_news` with limit 5-10 to get recent headlines and sentiment.

### Step 7: Deep Dive (if needed)

Call `search_crypto_info` to answer specific questions...

Related Claw Skills