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

# Connect DexPaprika MCP to Codex

> Add the DexPaprika MCP server to OpenAI Codex CLI with one command. Give Codex live DEX market data across 36 blockchains over streamable HTTP. Keyless, no API key.

[OpenAI Codex CLI](https://github.com/openai/codex) supports MCP servers, so you can give it live DEX market data from DexPaprika. The hosted server is keyless, so there is no API key or bearer token to configure.

## Add it with one command

```bash theme={null}
codex mcp add dexpaprika --url https://mcp.dexpaprika.com/streamable-http
```

This writes the server to `~/.codex/config.toml`. Codex connects to it over streamable HTTP on the next run.

## Or configure it manually

Add this to `~/.codex/config.toml`:

```toml theme={null}
[mcp_servers.dexpaprika]
url = "https://mcp.dexpaprika.com/streamable-http"
```

No `bearer_token_env_var` or OAuth options are needed. The DexPaprika API is keyless.

## Verify

Start Codex and ask a question that needs live data:

```
Which blockchain networks does DexPaprika support, and what are the top pools on Base by volume?
```

Codex should call the DexPaprika tools and return current data. List configured servers any time with:

```bash theme={null}
codex mcp list
```

## What you get

The server exposes 17 tools covering networks, pools, tokens, OHLCV, transactions, and cross-chain search. See the [MCP tools reference](/ai-integration/mcp-tools) for the full list, parameters, and the `getCapabilities` onboarding tool.

## Resources

* [Hosted MCP server](/ai-integration/hosted-mcp-server)
* [MCP tools reference](/ai-integration/mcp-tools)
* [Codex CLI](https://github.com/openai/codex)

## FAQs

<AccordionGroup>
  <Accordion title="Do I need an API key for Codex?">
    No. The hosted DexPaprika MCP server is keyless, so there is no bearer token or OAuth to configure. A free registered key or Pro plan only raises your rate and monthly quota; see [rate limits](/knowledge-base/rate-limits).
  </Accordion>

  <Accordion title="Which transport does Codex use?">
    Streamable HTTP. Point Codex at `https://mcp.dexpaprika.com/streamable-http`. The same server also serves SSE (`/sse`) for clients that prefer it.
  </Accordion>

  <Accordion title="How do I remove the server?">
    Delete the `[mcp_servers.dexpaprika]` block from `~/.codex/config.toml`, or run `codex mcp` to manage configured servers.
  </Accordion>
</AccordionGroup>

<script type="application/ld+json">
  {JSON.stringify({
      "@context": "https://schema.org",
      "@type": "FAQPage",
      "mainEntity": [
        {"@type": "Question","name": "Do I need an API key for Codex?","acceptedAnswer": {"@type": "Answer","text": "No. The hosted DexPaprika MCP server is keyless, so there is no bearer token or OAuth to configure. A free registered key or Pro plan only raises your rate and monthly quota."}},
        {"@type": "Question","name": "Which transport does Codex use?","acceptedAnswer": {"@type": "Answer","text": "Streamable HTTP. Point Codex at https://mcp.dexpaprika.com/streamable-http. The same server also serves SSE for clients that prefer it."}},
        {"@type": "Question","name": "How do I remove the server?","acceptedAnswer": {"@type": "Answer","text": "Delete the [mcp_servers.dexpaprika] block from ~/.codex/config.toml, or run codex mcp to manage configured servers."}}
      ]
    })}
</script>
