CoinCryptoRank MCP
Real-time crypto market data, funding rates, arbitrage and trading tools from 60+ exchanges.
Open source Repository Open in the app JSON README (API)
About
Real-time crypto market data, funding rates, arbitrage and trading tools from 60+ exchanges.
Details
- Kind
- MCP servers
- Topic
- Finance & crypto
- Publisher
- qqdd27
- Origin
- official
- Category
- ferramentas
- Transport
- http
- Version
- 1.0.1
- Stars
- 1
- Last push
- 2026-08-31T16:49:22Z
- Repository state
- ativo
- License
- MIT
- Added
- 2026-08-31 17:00:52
- Updated
- 2026-08-31 17:00:52
- Origin id
io.github.qqdd27/coincryptorank-mcp
README
# CoinCryptoRank MCP
Model Context Protocol server for real-time crypto market data, funding rates,
cross-exchange arbitrage, portfolio analytics, exchange skills and trading —
powered by [CoinCryptoRank](https://coincryptorank.com), a first-party market
data aggregator covering 60+ exchanges.
Published in the [official MCP Registry](https://registry.modelcontextprotocol.io)
as `io.github.qqdd27/coincryptorank-mcp`.
## Pricing (free tier included)
| Plan | MCP calls / day | Per-minute rate |
|---|---|---|
| **Free** | **200** | 30 |
| Basic | 500 | 30 |
| Premium | 1,000 | 120 |
| Pro | 5,000 | 120 |
| Elite | 20,000 | 120 |
An **API key is always required** (even on the free plan — this protects the
endpoint from bots). Create a free account and a key in under a minute; the
free allowance is generous enough to build and run real agent workflows.
## Features
> **Full capabilities, all 35 tools with examples, exchange integrations and
> skills:** see [docs/CAPABILITIES.md](docs/CAPABILITIES.md).
- **Market data** — real-time tickers, orderbooks, spot/perpetual/funding
arbitrage opportunities, funding rate history (360 days), funding spread
regime-shift detection, delivery/basis (cash-and-carry) analytics, news.
- **Portfolio** — your connected exchange balances, positions, daily P&L,
transactions, funding predictions.
- **Trading** — `place_order`, `close_position`, `set_sl_tp`, `get_open_orders`
(Binance futures, BingX spot, Bybit linear) — executes only through **your
own** connected exchange API keys and real trading agents.
- **Hedge engine** — open/close hedged funding-arbitrage positions, monitor
threat level, analyze basis regimes.
- **Exchange skills** — `get_exchange_skills` lists the official exchange MCP
servers and AI skill libraries we aggregate (Binance Skills Hub, BingX AI
Skills, OKX Agent Trade Kit, Bybit MCP, Coinbase CDP) with availability for
your connected keys.
- **AI agents** — list/trigger your CoinCryptoRank agents, read their decisions.
All data is **first-party**: our own aggregator pipeline, blockchain RPCs and
official exchange APIs. No competitor aggregators (CoinMarketCap, CoinGecko,
DefiLlama) are used.
## Getting a key
1. Create an account at [coincryptorank.com](https://coincryptorank.com)
(free plan is enough to start — 200 calls/day).
2. Open **Profile → Integrations → MCP** (or directly
https://coincryptorank.com/profile/integrations/) and create an API key.
The key starts with `ccr_` and is shown **only once** — store it safely.
3. Keys are revocable at any time; each key is scoped to **your** account —
market data is shared, portfolio/trading tools only ever touch your own
connected exchanges.
## Installation
### Claude Code
```bash
claude mcp add --transport http coincryptorank https://coincryptorank.com/api/v1/mcp --header "Authorization: Bearer ccr_YOUR_KEY"
```
### Cursor / Claude Desktop / any MCP client
```json
{
"mcpServers": {
"coincryptorank": {
"type": "http",
"url": "https://coincryptorank.com/api/v1/mcp",
"headers": { "Authorization": "Bearer ccr_YOUR_KEY" }
}
}
}
```
The server speaks the MCP protocol over HTTP (JSON-RPC 2.0,
`initialize` / `tools/list` / `tools/call`). No SDK or local runtime is needed.
## Tools (35)
**Market data** — `get_tickers`, `get_orderbook`, `get_news`,
`get_funding_arbitrage`, `get_spot_arbitrage`, `get_perp_arbitrage`,
`get_funding_rates`, `get_funding_schedule`, `get_klines`,
`get_basis_history`, `get_basis_regime`, `get_basis_signal`,
`analyze_pair_liquidity`, `backtest_basis_strategy`
**Portfolio (your accounts)** — `get_portfolio`, `get_positions`
**Hedge engine** — `open_hedged_position`, `close_hedged_position`,
`hedge_status`, `adjust_hedge`, `set_hedge_protection`, `get_threat_level`,
`list_hedge_positions`, `get_agent_events`
**Trading (your keys)** — `place_order`, `close_position`, `set_sl_tp`,
`get_open_orders`
**AI agents** — `list_agents`, `agent_status`, `agent_chat`, `agent_trigger`,
`agent_decisions`
**Exchange skills** — `get_exchange_skills`, `square_post`
Run `tools/list` against the endpoint for full input schemas of every tool.
## Security
- Bearer-key authentication for **all** calls; only the SHA-256 hash of your
key is stored. No anonymous access.
- Per-account isolation: portfolio, positions, orders and hedge positions are
scoped to the key owner (IDOR-protected).
- Trading requires your own connected exchange API keys and never touches
other users' data.
- Daily limits per plan (200–20,000) + per-minute rate limits (30–120).
## Support
- Documentation & plans: https://coincryptorank.com
- Issues: https://github.com/qqdd27/coincryptorank-mcp/issues
## License
MIT