> ## Documentation Index
> Fetch the complete documentation index at: https://docs.coingecko.com/llms.txt
> Use this file to discover all available pages before exploring further.

# CoinGecko Docs MCP

> Let AI agents search CoinGecko documentation via the Docs MCP Server

Give your AI agent direct access to CoinGecko's documentation — endpoint references, guides, tutorials, and more — without leaving the conversation.

```
https://docs.coingecko.com/mcp
```

<Note>
  This server searches the **documentation**.<br />
  To query live crypto data (prices, markets, onchain), use [CoinGecko API MCP ->](/ai-integration/mcp-server)
</Note>

## Setup

<Tabs>
  <Tab title="Claude Web">
    <Steps>
      <Step title="Add connector">
        Go to [Settings > Connectors](https://claude.ai/customize/connectors?modal=add-custom-connector) on claude.ai.

        <Frame>
          <img src="https://mintcdn.com/coingecko/i9l2MT4etZGYjSx8/assets/images/claude-web-add-connector.png?fit=max&auto=format&n=i9l2MT4etZGYjSx8&q=85&s=a84535ddeb7ba690a2678e4bd7600d17" width="1233" height="838" data-path="assets/images/claude-web-add-connector.png" />
        </Frame>
      </Step>

      <Step title="Enter server details">
        * **Name:** `CoinGecko Docs`
        * **Remote MCP server URL:** `https://docs.coingecko.com/mcp`

        Click **Add**.
      </Step>
    </Steps>
  </Tab>

  <Tab title="Claude Desktop">
    <Steps>
      <Step title="Open config">
        Edit `claude_desktop_config.json` ([find this file](https://modelcontextprotocol.io/docs/develop/connect-local-servers)).
      </Step>

      <Step title="Add server">
        ```json theme={null}
        {
          "mcpServers": {
            "coingecko-docs": {
              "command": "npx",
              "args": [
                "mcp-remote",
                "https://docs.coingecko.com/mcp"
              ]
            }
          }
        }
        ```

        Requires [Node.js](https://nodejs.org/en/download).
      </Step>

      <Step title="Restart Claude Desktop">
        Restart to load the new server.
      </Step>
    </Steps>
  </Tab>

  <Tab title="Claude Code">
    <Steps>
      <Step title="Add server">
        ```bash theme={null}
        claude mcp add --transport http \
          coingecko-docs https://docs.coingecko.com/mcp
        ```
      </Step>

      <Step title="Verify">
        ```bash theme={null}
        claude mcp list
        ```
      </Step>
    </Steps>
  </Tab>
</Tabs>

## What can it do?

Once connected, your AI agent can search the CoinGecko documentation directly. For example:

* "How do I authenticate with the CoinGecko API?"
* "What parameters does the `/coins/markets` endpoint accept?"
* "Show me the WebSocket subscription format"

<Card title="Connect to Live Data" icon="bolt" href="/ai-integration/mcp-server" arrow="true">
  Need real-time prices, market data, or onchain analytics? Use the CoinGecko API MCP Server.
</Card>
