A Model Context Protocol (MCP) server that provides access to decentralized exchange (DEX) data from the DexPaprika API. This server enables AI assistants like Claude to fetch and analyze DEX, token, and liquidity pool information without requiring API keys.
- Blockchain network information across multiple chains
- Decentralized exchange (DEX) data
- Liquidity pool details and metrics
- Token information and market data
- Price and volume analytics for tokens and pools
- Comprehensive search capabilities across DeFi entities
# Install from npm
npm install -g dexpaprika-mcp
# Or use directly with npx
npx dexpaprika-mcp
Watch our video tutorial to learn how to set up and use the DexPaprika MCP server:
Add this configuration to your Claude Desktop config file:
MacOS: ~/Library/Application\ Support/Claude/claude_desktop_config.json
Windows: %APPDATA%/Claude/claude_desktop_config.json
{
"mcpServers": {
"dexpaprika": {
"command": "npx",
"args": ["dexpaprika-mcp"]
}
}
}
Once configured with Claude Desktop, you can use prompts like:
- "What are the top liquidity pools on Ethereum by volume?"
- "Show me details about the USDC/ETH pool on Uniswap V3."
- "What's the current price of SOL in the Raydium pool on Solana?"
- "Which DEXes are available on the Fantom network?"
- "What tokens have the highest trading volume in the last 24 hours?"
- "Find pools for the Jupiter token on Solana."
- "Get OHLCV data for the SOL/USDC pool on Solana for the past week."
The server provides these tools to Claude:
- getNetworks - Get a list of all supported blockchain networks and their metadata
- getNetworkDexes - Get a list of available DEXes on a specific network
- getTopPools - Get a paginated list of top liquidity pools from all networks
- getNetworkPools - Get a list of top liquidity pools on a specific network
- getDexPools - Get top pools on a specific DEX within a network
- getPoolDetails - Get detailed information about a specific pool on a network
- getTokenDetails - Get detailed information about a specific token on a network
- getTokenPools - Get a list of top liquidity pools for a specific token on a network
- getPoolOHLCV - Get OHLCV (Open-High-Low-Close-Volume) data for a specific pool
- getPoolTransactions - Get transactions of a pool on a network
- search - Search for tokens, pools, and DEXes by name or identifier
This server uses the DexPaprika API free tier by default, which comes with rate limiting:
- If you encounter a rate limit error, it means you've reached the maximum number of requests allowed for the free tier
- To increase your rate limits and access additional features, consider upgrading to a paid plan at https://docs.dexpaprika.com/
- Rate limits help ensure fair usage and service stability for all users
To develop or modify this server:
# Clone the repository
git clone https://github.com/coinpaprika/dexpaprika-mcp.git
cd dexpaprika-mcp
# Install dependencies
npm install
# Start the server in development mode
npm run watch
# Build for production
npm run build
This project is licensed under the MIT License - see the LICENSE file for details.
This server uses the DexPaprika API to fetch decentralized exchange data. DexPaprika is developed by CoinPaprika and provides comprehensive data on tokens, pools, and DEXes across multiple blockchain networks.