Coinmarketcap Mcp — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited Coinmarketcap Mcp (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
An MCP (Model Context Protocol) server for querying cryptocurrency data from CoinMarketCap. Enables AI assistants like Claude to search tokens, validate metadata, and retrieve market data through natural language.
Add to your ~/.env.local:
COINMARKETCAP_API_KEY=your-api-key-here
# Or alternatively:
CMC_API_KEY=your-api-key-hereAdd to your ~/.claude.json under mcpServers:
{
"coinmarketcap": {
"command": "uvx",
"args": ["coinmarketcap-mcp"],
"env": {
"COINMARKETCAP_API_KEY": "${COINMARKETCAP_API_KEY}"
}
}
}Restart Claude Code to load the MCP server. You should now have access to CoinMarketCap tools.
| Tool | Description |
|---|---|
search_cryptocurrency | Progressive search with fuzzy matching and homepage verification |
cryptocurrency_map | Direct lookup by symbol or slug |
| Tool | Description |
|---|---|
cryptocurrency_info | Detailed metadata (description, logo, links, platform) |
cryptocurrency_quotes_latest | Latest price, volume, market cap, price changes |
| Tool | Description |
|---|---|
exchange_map | Search for exchanges |
exchange_info | Exchange metadata and details |
| Tool | Description |
|---|---|
global_metrics_quotes_latest | Total market cap, BTC dominance, active coins |
key_info | API usage and rate limits |
The search_cryptocurrency tool uses multiple strategies to find tokens:
Query: name="Render Token", symbol="RNDR", homepage="https://rendernetwork.com"
Search log:
- exact_symbol(RNDR): failed (symbol was renamed)
- symbol_variation(RENDER): 1 found
- homepage_verification: exact match
Result: Render (RENDER) - id=5690, confidence=verified"Search for a token named 'Uniswap' with homepage 'https://uniswap.org'"
"Is RENDER listed on CoinMarketCap?"
"Get the profile and description for Chainlink"
"What's the current price and market cap of BTC and ETH?"
"Check my API usage"Add to ~/Library/Application Support/Claude/claude_desktop_config.json under mcpServers:
{
"coinmarketcap": {
"command": "uvx",
"args": ["coinmarketcap-mcp"],
"env": {
"COINMARKETCAP_API_KEY": "${COINMARKETCAP_API_KEY}"
}
}
}# Clone the repo
git clone https://github.com/YimingYAN/coinmarketcap-mcp
cd coinmarketcap-mcp
# Install dependencies
uv sync
# Run the server locally
COINMARKETCAP_API_KEY=your-key uv run coinmarketcap-mcpMIT License - see LICENSE for details.
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.