---
title: DexPaprika MCP Server for AI Agents — Free DEX Data
description: Free hosted MCP server providing real-time DEX data. 25M+ tokens, 28M+ pools, 33 blockchains. No API key, no rate limits.
url: https://mcp.dexpaprika.com
type: website
---

# Free DEX data for your AI agents. No API key, no rate limits.

Hosted MCP server powered by DexPaprika. 25M+ tokens, 28M+ pools across 33 blockchains.
Industrial-grade DEX data — completely free.

## Get started

Connect your AI agent to the DexPaprika MCP server:

### Streamable HTTP (recommended)

```
https://mcp.dexpaprika.com/streamable-http
```

### JSON-RPC example

```bash
curl -X POST https://mcp.dexpaprika.com/streamable-http \
  -H "Content-Type: application/json" \
  -H "Accept: application/json, text/event-stream" \
  -d '{"jsonrpc":"2.0","method":"initialize","params":{"protocolVersion":"2024-11-05","capabilities":{},"clientInfo":{"name":"my-agent","version":"1.0"}},"id":1}'
```

## How it works

1. **Connect your MCP client** — Point Claude, Cursor, or any MCP-compatible agent to the Streamable HTTP endpoint
2. **Call tools** — The server exposes 14 tools for querying DEX data across 33 blockchains
3. **Get structured JSON** — All responses include pool data, token prices, OHLCV candles, and more

## Available tools

| Tool | Description |
|------|-------------|
| `getCapabilities` | Server capabilities, workflow patterns, network synonyms, and best practices. **Start here.** |
| `getNetworks` | List all 33 supported blockchain networks |
| `getNetworkDexes` | Available DEXes on a specific network |
| `getNetworkPools` | Top liquidity pools on a network (sortable by volume, price, transactions) |
| `getDexPools` | Pools from a specific DEX on a network |
| `getNetworkPoolsFilter` | Filter pools by volume, transactions, and creation time |
| `getPoolDetails` | Detailed pool info (price, volume, TVL, tokens) |
| `getPoolOHLCV` | Historical OHLCV candle data for a pool |
| `getPoolTransactions` | Recent transactions/trades for a pool |
| `getTokenDetails` | Detailed information about a token |
| `getTokenPools` | Liquidity pools containing a specific token |
| `getTokenMultiPrices` | Batched prices for up to 10 tokens at once |
| `search` | Search tokens, pools, and DEXes across ALL networks by name, symbol, or address |
| `getStats` | High-level ecosystem stats (total networks, DEXes, pools, tokens) |

## MCP client configuration

### Claude Desktop / Claude Code

```json
{
  "mcpServers": {
    "dexpaprika": {
      "type": "streamable-http",
      "url": "https://mcp.dexpaprika.com/streamable-http"
    }
  }
}
```

## Data coverage

- **25M+ tokens** across 33 blockchain networks
- **28M+ liquidity pools** with real-time pricing
- **33 blockchains** — Ethereum, Solana, Base, Arbitrum, Polygon, and 28 more
- **OHLCV candle data** with intervals from 1m to 24h
- **Pool transactions** with cursor-based pagination
- **Batch token pricing** — up to 10 tokens per request
- **Cross-chain search** — find any token, pool, or DEX by name or address

## FAQ

**Is this really free?**
Yes. No API key, no registration, no credit card, no rate limits. Industrial-grade DEX data, free and public.

**What AI agents does this work with?**
Any MCP-compatible client: Claude Desktop, Claude Code, Cursor, Windsurf, custom agents. If it supports Streamable HTTP transport, it works.

**What blockchains are supported?**
33 networks including Ethereum, Solana, Base, Arbitrum, Polygon, BSC, Avalanche, Optimism, and more. Call `getNetworks` for the full list.

**How do I find a specific token?**
Use the `search` tool with a token name, symbol, or contract address. It searches across all 33 networks automatically.

**What transport protocols are supported?**
Streamable HTTP (JSON-RPC over HTTP POST with SSE responses). The server requires an `Mcp-Session-Id` header after initialization.

## Other integration options

| Integration | Description | Link |
|-------------|-------------|------|
| REST API Skill | Full DEX data access for AI agents | [skill.md](https://dexpaprika.com/agents/skill.md) |
| Streaming Skill | Real-time SSE price streaming | [streaming/skill.md](https://dexpaprika.com/agents/streaming/skill.md) |
| TypeScript SDK | Official SDK for programmatic access | [SDK Docs](https://docs.dexpaprika.com/get-started/sdk-ts) |
| AI Agents Landing | Overview of all AI integration options | [agents.dexpaprika.com](https://agents.dexpaprika.com) |

## Links

- [DexPaprika Documentation](https://docs.dexpaprika.com)
- [API Reference](https://docs.dexpaprika.com/api-reference/introduction)
- [Streaming API](https://docs.dexpaprika.com/streaming/introduction)
- [GitHub](https://github.com/coinpaprika)
- [DexPaprika](https://dexpaprika.com)
- [CoinPaprika](https://coinpaprika.com)
- [Twitter / X](https://x.com/coinpaprika)

---
*Built by [CoinPaprika](https://coinpaprika.com) — Trusted by thousands of developers since 2018.*
