Crypto Data MCP Server
Pricing
Pay per usage
Crypto Data MCP Server
Real-time crypto market data exposed as an MCP (Model Context Protocol) server. AI agents connect directly and call tools: kimchi premium, DeFi yields, ETF flows, Fear & Greed index, funding rates, market overview. No API keys required. Runs as a persistent HTTP server.
Pricing
Pay per usage
Rating
0.0
(0)
Developer
Hojun Lee
Maintained by CommunityActor stats
0
Bookmarked
2
Total users
1
Monthly active users
2 days ago
Last modified
Categories
Share
Real-time crypto market data exposed as an MCP (Model Context Protocol) server. Connect Claude Desktop or any MCP-compatible AI agent directly — no scraping, no API keys, no setup required.
Important: This is a server actor, not a one-shot scraper. Do NOT click "Run" — use the Standby URL to connect your AI agent. Clicking "Run" starts a short-lived instance that will time out.
⚡ Connect in 60 seconds (Claude Desktop)
-
Get your Standby URL from the actor page → Integrations tab → copy the Standby URL
Format:https://xxxxxxxxxxxxxxxx.apify.actor -
Add to Claude Desktop config (
claude_desktop_config.json):
{"mcpServers": {"crypto-data": {"command": "npx","args": ["-y", "mcp-remote", "https://YOUR_STANDBY_URL/mcp/v1"]}}}
- Restart Claude Desktop — the 6 crypto tools appear automatically.
What is MCP?
Model Context Protocol lets AI assistants (Claude, GPT, etc.) call external tools in a standardized way. This actor runs as a persistent MCP server that your AI agent queries for live crypto data.
Available Tools
| Tool | Description |
|---|---|
get_kimchi_premium | Korean exchange premium vs global BTC/ETH price |
get_defi_yields | Top DeFi yield opportunities (DefiLlama) |
get_etf_flows | BTC/ETH spot ETF daily inflow/outflow data |
get_fear_greed | Crypto Fear & Greed Index (0–100) |
get_funding_rates | Perpetual funding rates across major CEXs |
get_market_overview | BTC dominance, total market cap, top movers |
MCP Endpoints
Once connected via the Standby URL:
| Endpoint | Method | Description |
|---|---|---|
/mcp/v1 | POST | MCP tool call (JSON-RPC) |
/mcp/v1/tools | GET | List available tools |
/health | GET | Health check |
Example Tool Calls
Fear & Greed Index:
{"method": "tools/call","params": { "name": "get_fear_greed", "arguments": {} }}
DeFi yields with filters:
{"method": "tools/call","params": {"name": "get_defi_yields","arguments": { "min_apy": 8.0, "min_tvl": 5000000, "limit": 10 }}}
ETF flows:
{"method": "tools/call","params": {"name": "get_etf_flows","arguments": { "etf_type": "us-btc-spot" }}}
Tool Parameters
get_defi_yields
| Parameter | Type | Default | Description |
|---|---|---|---|
min_apy | number | 5.0 | Minimum APY % |
min_tvl | number | 1,000,000 | Minimum TVL in USD |
limit | integer | 20 | Max results |
get_etf_flows
| Parameter | Type | Values |
|---|---|---|
etf_type | string | us-btc-spot, us-eth-spot |
get_funding_rates
| Parameter | Type | Default |
|---|---|---|
symbols | array | ["BTC", "ETH", "SOL", "BNB", "XRP"] |
Input Parameters
| Parameter | Type | Default | Description |
|---|---|---|---|
port | integer | 8080 | Internal port for the MCP server |
Use Cases
- Claude Desktop — Ask "what's the Bitcoin fear & greed today?" and get live data
- AI trading agents — Feed real-time market context into automated strategies
- Crypto chatbots — Add live data to any LLM without managing API keys
- Research pipelines — Pull structured market data on demand
Notes
- This actor uses Apify Standby mode — it stays alive and responds to requests on demand
- Connect via the Standby URL from the Integrations tab, not by clicking "Run"
- Data sources: CoinGecko, DefiLlama, SoSoValue, Alternative.me (no API keys needed)
- No Apify API token required for the MCP connection itself
