Skip to main content

How to set up the Cryptohopper MCP in Codex?

Learn how to register the Cryptohopper Market Data MCP server in Codex so you can query live crypto market data directly from your ChatGPT powered coding sessions. This guide walks you through setup, configuration, and troubleshooting

Written by Bryan
Updated today

This article shows you how to register the Cryptohopper Market Data MCP server in Codex so you can query market data from your ChatGPT-powered coding sessions.

Prerequisites

  • An active ChatGPT subscription

  • Codex installed on your machine

  • Your Cryptohopper MCP API key (bearer token)

Setup

  1. Open Codex and start a new session.

  2. 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"

    }

    }

    }

    }

  3. When asked “Do you want me to update your Codex config so this MCP server is registered?”, choose Yes, and don’t ask again this session.

  4. Restart Codex and open a new chat.

  5. Type: “I want to use the Cryptohopper MCP.”

  6. If Codex asks for further confirmations, keep selecting Yes, don’t ask again.

  7. Once the server is active, start asking your questions.

Doesn't it work?

  • Authentication errors: Verify your bearer token is correct and still valid. Regenerate it from your Cryptohopper account if necessary.

  • Server not registered: Make sure you accepted the config update prompt and restarted Codex afterwards.

  • MCP not responding: Confirm the URL is exactly https://mcp-data.cryptohopper.com/mcp and that your machine can reach it (check firewall or VPN settings).

  • Commands fail inside Codex: Install any required dependencies for the task before prompting Codex again.

Did this answer your question?