TopRank Skills

Official OpenClaw rules 54%

cmc-mcp

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"

Stars

0

Installs

0

Status

ACTIVE

Visibility

PUBLIC

安装方式

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

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

Overview

Skill Key
bryan-cmc/cmc-mcp
Author
bryan-cmc
Source Repo
openclaw/skills
Version
-
Source Path
skills/bryan-cmc/cmc-mcp
Latest Commit SHA
dd77bae7ba13530dae1938f5a845d51c1b1c607c

Extracted Content

SKILL.md excerpt

# 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:

```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

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...

Related Claw Skills