Skip to main content

How to set up the Cryptohopper MCP in Claude Code?

Learn how to connect the Cryptohopper Market Data MCP server to Claude Code. This guide covers everything you need — from pasting the configuration to troubleshooting common issues — so you can query live crypto market data directly from your terminal.

Written by Bryan
Updated today

This article shows you how to connect the Cryptohopper Market Data MCP server to Claude Code so you can query market data directly from your terminal.

Prerequisites

  • An active Claude subscription

  • Claude Code installed on your Windows or Mac machine

  • Your Cryptohopper MCP API key (bearer token)

Setup

  1. Open a terminal on your computer.

  2. Run claude and confirm Yes, trust this folder when prompted.

  3. Paste the following configuration, replacing YOUR_REAL_MCP_API_KEY with your actual bearer token:

    {

    "mcpServers": {

    "Cryptohopper.com Market Data": {

    "type": "http",

    "headers": {

    "Authorization": "Bearer YOUR_REAL_MCP_API_KEY"

    }

    }

    }

    }

  4. Tell Claude Code: "Add to Claude Code settings — install the Cryptohopper Exchange Data MCP server so I can use it in sessions."

  5. When asked to update the config, choose Yes, and don’t ask again.

  6. Select project-level and confirm claude mcp add. Pick Yes, I’m comfortable with that only on your own device (for security reasons).

  7. You’re ready — start asking your questions.

Doesn’t it work?

  • Authentication errors: Double-check that your bearer token is correct and has not expired. Regenerate it in your Cryptohopper account if needed.

  • Server not found: Make sure the URL is exactly https://mcp-data.cryptohopper.com/mcp and that you selected Yes when prompted to update the config.

  • MCP not listed in session: Restart Claude Code and confirm the server appears under your installed MCP servers.

Missing dependencies: If a prompt requires additional tools or libraries, install them first, then retry your request

Did this answer your question?