DexPaprika (CoinPaprika)

Official

Integrations

  • Provides access to token information, liquidity pools, and DEX data on the Ethereum blockchain

  • Offers DEX listings and analytics for tokens and liquidity pools on the Fantom network

  • Supports configuration on macOS through specific file paths for Claude Desktop integration

DexPaprika MCP Server

A Model Context Protocol (MCP) server that provides on-demand access to DexPaprika's cryptocurrency and DEX data API. Built specifically for AI assistants like Claude to programmatically fetch real-time token, pool, and DEX data with zero configuration.

TL;DR

# Install globally npm install -g dexpaprika-mcp # Start the server dexpaprika-mcp # Or run directly without installation npx dexpaprika-mcp

DexPaprika MCP connects Claude to live DEX data across multiple blockchains. No API keys required. Installation | Configuration | API Reference

What Can You Build?

  • Token Analysis Tools: Track price movements, liquidity depth changes, and volume patterns
  • DEX Comparisons: Analyze fee structures, volume, and available pools across different DEXes
  • Liquidity Pool Analytics: Monitor TVL changes, impermanent loss calculations, and price impact assessments
  • Market Analysis: Cross-chain token comparisons, volume trends, and trading activity metrics
  • Portfolio Trackers: Real-time value tracking, historical performance analysis, yield opportunities
  • Technical Analysis: Perform advanced technical analysis using historical OHLCV data, including trend identification, pattern recognition, and indicator calculations

Installation

Installing via Smithery

To install DexPaprika for Claude Desktop automatically via Smithery:

npx -y @smithery/cli install @coinpaprika/dexpaprika-mcp --client claude

Manual Installation

# Install globally (recommended for regular use) npm install -g dexpaprika-mcp # Verify installation dexpaprika-mcp --version # Start the server dexpaprika-mcp

The server runs on port 8010 by default. You'll see MCP server is running at http://localhost:8010 when successfully started.

Video Tutorial

Watch our step-by-step tutorial on setting up and using the DexPaprika MCP server:

Claude Desktop Integration

Add the following to your Claude Desktop configuration file:

macOS: ~/Library/Application\ Support/Claude/claude_desktop_config.json
Windows: %APPDATA%/Claude/claude_desktop_config.json

{ "mcpServers": { "dexpaprika": { "command": "npx", "args": ["dexpaprika-mcp"] } } }

After restarting Claude Desktop, the DexPaprika tools will be available to Claude automatically.

Technical Capabilities

The MCP server exposes these specific endpoints Claude can access:

Network Operations

FunctionDescriptionExample
getNetworksRetrieves all supported blockchain networks and metadata{"id": "ethereum", "name": "Ethereum", "symbol": "ETH", ...}
getNetworkDexesLists DEXes available on a specific network{"dexes": [{"id": "uniswap_v3", "name": "Uniswap V3", ...}]}

Pool Operations

FunctionDescriptionRequired ParametersExample Usage
getTopPoolsGets top liquidity pools across all networkslimit, orderByFetch top 10 pools by 24h volume
getNetworkPoolsGets top pools on a specific networknetwork, limitGet Solana's highest liquidity pools
getDexPoolsGets top pools for a specific DEXnetwork, dexList pools on Uniswap V3
getPoolDetailsGets detailed pool metricsnetwork, poolAddressComplete metrics for USDC/ETH pool
getPoolOHLCVRetrieves time-series price data for various analytical purposes (technical analysis, ML models, backtesting)network, poolAddress, start, interval7-day hourly candles for SOL/USDC
getPoolTransactionsLists recent transactions in a poolnetwork, poolAddressLast 20 swaps in a specific pool

Token Operations

FunctionDescriptionRequired ParametersOutput Fields
getTokenDetailsGets comprehensive token datanetwork, tokenAddressprice_usd, volume_24h, liquidity_usd, etc.
getTokenPoolsLists pools containing a tokennetwork, tokenAddressReturns all pools with liquidity metrics
searchFinds tokens, pools, DEXes by name/idqueryMulti-entity search results

Example Usage

// With Claude, get details about a specific token: const solanaJupToken = await getTokenDetails({ network: "solana", tokenAddress: "JUPyiwrYJFskUPiHa7hkeR8VUtAeFoSYbKedZNsDvCN" }); // Find all pools for a specific token with volume sorting: const jupiterPools = await getTokenPools({ network: "solana", tokenAddress: "JUPyiwrYJFskUPiHa7hkeR8VUtAeFoSYbKedZNsDvCN", orderBy: "volume_usd", limit: 5 }); // Get historical price data for various analytical purposes (technical analysis, ML models, backtesting): const ohlcvData = await getPoolOHLCV({ network: "ethereum", poolAddress: "0x88e6a0c2ddd26feeb64f039a2c41296fcb3f5640", // ETH/USDC on Uniswap V3 start: "2023-01-01", interval: "1d", limit: 30 });

Sample Prompts for Claude

When working with Claude, try these specific technical queries:

  • "Analyze the JUP token on Solana. Fetch price, volume, and top liquidity pools."
  • "Compare trading volume between Uniswap V3 and SushiSwap on Ethereum."
  • "Get the 7-day OHLCV data for SOL/USDC on Raydium and plot a price chart."
  • "Find the top 5 pools by liquidity on Fantom network and analyze their fee structures."
  • "Get recent transactions for the ETH/USDT pool on Uniswap and analyze buy vs sell pressure."
  • "Which tokens have seen >10% price increases in the last 24h on Binance Smart Chain?"
  • "Search for all pools containing the ARB token and rank them by volume."
  • "Retrieve OHLCV data for BTC/USDT to analyze volatility patterns and build a price prediction model."

Rate Limits & Performance

  • Free Tier Limits: 60 requests per minute
  • Response Time: 100-500ms for most endpoints (network dependent)
  • Data Freshness: Pool and token data updated every 15-30s
  • Error Handling: 429 status codes indicate rate limiting
  • OHLCV Data Availability: Historical data typically available from token/pool creation date

Troubleshooting

Common Issues:

  • Rate limiting: If receiving 429 errors, reduce request frequency
  • Missing data: Some newer tokens/pools may have incomplete historical data
  • Timeout errors: Large data requests may take longer, consider pagination
  • Network errors: Check network connectivity, the service requires internet access
  • OHLCV limitations: Maximum range between start and end dates is 1 year; use pagination for longer timeframes

Development

# Clone the repository git clone https://github.com/coinpaprika/dexpaprika-mcp.git cd dexpaprika-mcp # Install dependencies npm install # Run with auto-restart on code changes npm run watch # Build for production npm run build # Run tests npm test

License

This project is licensed under the MIT License - see the LICENSE file for details.

Additional Resources

-
security - not tested
A
license - permissive license
-
quality - not tested

remote-capable server

The server can be hosted and run remotely because it primarily relies on remote services or has no dependency on the local environment.

DexPaprika MCP server allows LLMs to access real-time and historical data on tokens, DEX trading activity, and liquidity across multiple blockchains. It enables natural language queries for exploring market trends, token performance, and DeFi analytics through a standardized interface.

  1. TL;DR
    1. What Can You Build?
      1. Installation
        1. Installing via Smithery
        2. Manual Installation
      2. Video Tutorial
        1. Claude Desktop Integration
          1. Technical Capabilities
            1. Network Operations
            2. Pool Operations
            3. Token Operations
            4. Example Usage
          2. Sample Prompts for Claude
            1. Rate Limits & Performance
              1. Troubleshooting
                1. Development
                  1. License
                    1. Additional Resources

                      Related MCP Servers

                      • A
                        security
                        A
                        license
                        A
                        quality
                        An MCP server implementation that enables access to DexScreener API data, providing real-time information on DEX pairs, token profiles, and market statistics across multiple blockchains.
                        Last updated -
                        7
                        6
                        JavaScript
                        The Unlicense
                      • A
                        security
                        A
                        license
                        A
                        quality
                        An MCP server that enables LLMs to perform blockchain operations on the Base network through natural language commands, including wallet management, balance checking, and transaction execution.
                        Last updated -
                        4
                        4
                        1
                        TypeScript
                        MIT License
                        • Apple
                      • -
                        security
                        F
                        license
                        -
                        quality
                        An MCP server that fetches real-time documentation for popular libraries like Langchain, Llama-Index, MCP, and OpenAI, allowing LLMs to access updated library information beyond their knowledge cut-off dates.
                        Last updated -
                        Python
                      • A
                        security
                        F
                        license
                        A
                        quality
                        A lightweight MCP server that provides a unified interface to various LLM providers including OpenAI, Anthropic, Google Gemini, Groq, DeepSeek, and Ollama.
                        Last updated -
                        6
                        84
                        Python

                      View all related MCP servers

                      ID: 92pfw4mr3x