← Back to directory
D

DexPaprika MCP Server

Official
Real-time multi-chain DEX and on-chain data via MCP
GitHub source repository ↗
★ 42 Stars Category · Other Popular
70FMRS · B

A well-maintained multi-chain DEX data MCP server with 16 read-only tools (hosted adds submitFeedback), keyless free tier, and thorough docs and examples. Great for DeFi analytics; not suitable for on-chain writes or strict real-time needs.

Reliability
9/20
Security and permissions
16/20
Maintenance
14/20
Documentation
17/20
Setup experience
14/20
Read the FMRS scoring method →

DexPaprika MCP Server, maintained by CoinPaprika, provides on-demand access to DexPaprika's crypto and DEX data API covering token prices, liquidity pools, trading volume, OHLCV history, and transactions across 36 blockchain networks. It runs locally over stdio via npm, or use the official hosted endpoint (streamable-http / sse / -rpc). The free tier requires no API key to start.

Tools

getCapabilities
Returns server capabilities, workflow patterns, network synonyms, and best practices. Start here.
getNetworks
Lists all 36 supported blockchain networks.
getStats
Returns high-level ecosystem stats (networks, DEXes, pools, tokens).
search
Search tokens, pools, and DEXes across all networks by name, symbol, or address.
getNetworkDexes
Lists DEXes on a specific network.
getNetworkPools
PRIMARY tool. Gets top liquidity pools on a network.
getDexPools
Gets pools from a specific DEX.
getNetworkPoolsFilter
Filters pools by volume, transactions, and creation time.
getPoolDetails
Detailed pool info (price, volume, TVL, tokens).
getPoolOHLCV
Historical OHLCV candle data.
getPoolTransactions
Recent transactions/trades for a pool.
getTokenDetails
Detailed token information.
getTokenPools
Liquidity pools containing a token (network-scoped filter, results + cursor pagination).
getTokenMultiPrices
Batched prices for up to 10 tokens.
getTopTokens
Top tokens on a network ranked by volume, liquidity, FDV, or 24h price change.
filterNetworkTokens
Filters tokens by volume, liquidity, FDV, transactions, and creation time.
submitFeedback
Hosted server only: submit feedback.

Setup

Install with npm install -g dexpaprika-mcp, then run dexpaprika-mcp; or run directly with npx dexpaprika-mcp@latest. Alternatively install via Smithery: npx -y smithery mcp add coinpaprika/dexpaprika. Zero-setup option: point an MCP client at https://mcp.dexpaprika.com/streamable-http (hosted endpoint). Add a dexpaprika entry to your Claude Desktop config file and restart.

claude_desktop_config.json
{"mcpServers":{"dexpaprika":{"command":"npx","args":["dexpaprika-mcp@latest"]}}}

Fit and risk

Best for

  • AI assistant users needing multi-chain DEX and on-chain data
  • DeFi analysts and market researchers
  • Developers building token and pool analysis tools

Not for

  • Scenarios needing on-chain writes, trade execution, or private-key management
  • CEX market data needs (this server focuses on DEX/on-chain data)
  • Users requiring truly real-time data on a free budget (free tier delays up to 15 seconds)

Required permissions

  • Requires internet access to call the DexPaprika API
  • Node.js/npm for local stdio installation
  • No API key needed for the free tier (a free key raises quota)

Risks and side effects

  • Free-tier rate limits (200,000 credits/month per IP, 30 requests/minute) can trigger DP429_RATE_LIMIT errors
  • Free tier data delayed up to 15 seconds; not for truly real-time use
  • Some newer tokens/pools may have incomplete historical data
  • Price and on-chain data are informational only, not investment advice

Troubleshooting

  1. On DP429_RATE_LIMIT errors, implement exponential backoff
  2. OHLCV max range between start and end dates is 1 year; paginate for longer timeframes
  3. Empty OHLCV may mean the pool is too new; use getPoolTransactions instead
  4. Large data requests may time out; use pagination
  5. The server is a stdio process launched by an MCP client (Claude Desktop, Cursor, Claude Code), not a browser URL

Use cases

Track token price movements, liquidity depth changes, and volume patterns
Compare fee structures, volume, and pools across DEXes
Monitor TVL changes and assess price impact
Perform technical analysis with historical OHLCV data
Build portfolio trackers and yield analysis tools

Supported clients

Claude DesktopFull support
CursorPartial support
Claude CodePartial support