Skip to content

coinpaprika/dexpaprika-mcp

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

DexPaprika MCP Server

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.

Features

  • 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

Installation

# Install from npm
npm install -g dexpaprika-mcp

# Or use directly with npx
npx dexpaprika-mcp

Video Tutorial

Watch our video tutorial to learn how to set up and use the DexPaprika MCP server:

DexPaprika MCP Tutorial

Usage with Claude Desktop

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"]
    }
  }
}

Sample Prompts for Claude

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."

Available Tools

The server provides these tools to Claude:

  1. getNetworks - Get a list of all supported blockchain networks and their metadata
  2. getNetworkDexes - Get a list of available DEXes on a specific network
  3. getTopPools - Get a paginated list of top liquidity pools from all networks
  4. getNetworkPools - Get a list of top liquidity pools on a specific network
  5. getDexPools - Get top pools on a specific DEX within a network
  6. getPoolDetails - Get detailed information about a specific pool on a network
  7. getTokenDetails - Get detailed information about a specific token on a network
  8. getTokenPools - Get a list of top liquidity pools for a specific token on a network
  9. getPoolOHLCV - Get OHLCV (Open-High-Low-Close-Volume) data for a specific pool
  10. getPoolTransactions - Get transactions of a pool on a network
  11. search - Search for tokens, pools, and DEXes by name or identifier

Rate Limits

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

Development

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

License

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

Acknowledgments

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.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published