MKT CAP$2.23T-0.3%
24H VOL$71.6B
BTC DOM57.7%
HEALTH34BEARISH
SHORT-TERM50NEUTRAL
LONG-TERM19BEARISH
OI$47.0B-0.5%
24H LIQ$148M
LONG/SHORT58.8% / 41.2%
REGIME (LT)ESTABLISHED BEAR MARKET
REGIME (ST)SQUEEZE
HL OI$7.3B
WHALESSHORT 46.3%
MKT CAP$2.23T-0.3%
24H VOL$71.6B
BTC DOM57.7%
HEALTH34BEARISH
SHORT-TERM50NEUTRAL
LONG-TERM19BEARISH
OI$47.0B-0.5%
24H LIQ$148M
LONG/SHORT58.8% / 41.2%
REGIME (LT)ESTABLISHED BEAR MARKET
REGIME (ST)SQUEEZE
HL OI$7.3B
WHALESSHORT 46.3%
Plug real-time crypto data into your AI agent — one command: Get your free API key →
Get API KeyLogin
CD

Claude Desktop

Coding agent setup

Give Claude Desktop live crypto market data — prices, funding, open interest, liquidations, market regimes, Fear & Greed, dealer gamma and whale activity — as native MCP tools.

Two parts: the Agent Skill (knowledge — installed as a capability zip) and the MCP server (live tools — added via claude_desktop_config.json). Claude Desktop connects to MCP servers over stdio, so you'll use the cryptodataapi-mcp npm bridge, which needs Node.js.

Vendor · Anthropic MCP · stdio Config · ~/Library/Application Support/Claude/claude_desktop_config.json · %APPDATA%\Claude\claude_desktop_config.json Skills · Settings → Capabilities (zip upload) Agent docs →
1

Install the Agent Skill (zip)

Download dist/cryptodataapi-skill.zip from the skills repo, then in Claude Desktop open Settings → Capabilities and upload it. Claude will consult the skill automatically on crypto-data tasks. See the Agent Skill page for what's inside.

2

Connect the MCP server

Make sure Node.js is installed (the bridge runs via npx). Then open your config file and add the cryptodataapi server. The path is ~/Library/Application Support/Claude/claude_desktop_config.json on macOS and %APPDATA%\Claude\claude_desktop_config.json on Windows — or use Settings → Developer → Edit Config.

Replace cdk_live_YOUR_KEY with your key (free one at cryptodataapi.com/login), save, and fully restart Claude Desktop.

claude_desktop_config.json
{
  "mcpServers": {
    "cryptodataapi": {
      "command": "npx",
      "args": ["-y", "cryptodataapi-mcp"],
      "env": { "CRYPTODATA_API_KEY": "cdk_live_YOUR_KEY" }
    }
  }
}
3

Try these prompts

After restarting, the tools appear under the MCP/tools indicator in the message box. Ask for a market read — see the example prompts below.

Example prompts

“Give me a one-call market snapshot: health score, regime, and Fear & Greed.”

“Compare BTC and ETH funding rates and tell me which side is crowded.”

“What's open interest doing across exchanges for BTC over the last 30 days?”

“Which coins are flashing the highest liquidation risk right now?”

“Is the market in a risk-on or risk-off regime today?”

FAQ

Does it cost anything?

No. The skill is free and the Free API tier (no card) covers the whole market-wide picture. Per-coin quant, gamma and whale signals need Pro.

Where does my API key live?

In the env block of claude_desktop_config.json on your machine. The bridge reads CRYPTODATA_API_KEY and sends it as X-API-Key to our API on each call.

The server won't start — what's wrong?

Almost always Node.js: npx must be on your PATH. Confirm with node -v, then fully quit and reopen Claude Desktop (a window reload isn't enough). Check Settings → Developer for the server's error log. If tools 401, fix the key in the env block.

Was this page helpful?

Missing an agent, a config that changed, or a step that didn't work? Tell us and we'll fix it.