Crypto Data MCP Server avatar

Crypto Data MCP Server

Pricing

Pay per usage

Go to Apify Store
Crypto Data MCP Server

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

Hojun Lee

Maintained by Community

Actor 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)

  1. Get your Standby URL from the actor page → Integrations tab → copy the Standby URL
    Format: https://xxxxxxxxxxxxxxxx.apify.actor

  2. Add to Claude Desktop config (claude_desktop_config.json):

{
"mcpServers": {
"crypto-data": {
"command": "npx",
"args": ["-y", "mcp-remote", "https://YOUR_STANDBY_URL/mcp/v1"]
}
}
}
  1. 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

ToolDescription
get_kimchi_premiumKorean exchange premium vs global BTC/ETH price
get_defi_yieldsTop DeFi yield opportunities (DefiLlama)
get_etf_flowsBTC/ETH spot ETF daily inflow/outflow data
get_fear_greedCrypto Fear & Greed Index (0–100)
get_funding_ratesPerpetual funding rates across major CEXs
get_market_overviewBTC dominance, total market cap, top movers

MCP Endpoints

Once connected via the Standby URL:

EndpointMethodDescription
/mcp/v1POSTMCP tool call (JSON-RPC)
/mcp/v1/toolsGETList available tools
/healthGETHealth 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

ParameterTypeDefaultDescription
min_apynumber5.0Minimum APY %
min_tvlnumber1,000,000Minimum TVL in USD
limitinteger20Max results

get_etf_flows

ParameterTypeValues
etf_typestringus-btc-spot, us-eth-spot

get_funding_rates

ParameterTypeDefault
symbolsarray["BTC", "ETH", "SOL", "BNB", "XRP"]

Input Parameters

ParameterTypeDefaultDescription
portinteger8080Internal 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