DexPaprika MCP Server

DexPaprika MCP Server

On-demand DEX and cryptocurrency data server for AI assistants like Claude.

30
Stars
12
Forks
30
Watchers
3
Issues
DexPaprika MCP Server provides a Model Context Protocol (MCP) interface for accessing real-time cryptocurrency and decentralized exchange (DEX) data. It enables AI assistants, particularly Claude, to query live token, pool, and DEX information without requiring API keys or prior configuration. The server integrates easily with Claude Desktop and supports batched token price queries, network-specific analytics, and technical analysis tools. Installation is streamlined via Smithery or npm, and it is designed to deliver fast, scalable, and relevant market data to AI systems.

Key Features

Real-time access to token, pool, and DEX data
No API key or configuration required
Integration with Claude Desktop
Batched token price querying
Network-specific analytics and queries
Historical OHLCV data retrieval
Liquidity pool metrics and TVL tracking
Portfolio and volume tracking tools
Cross-chain token and DEX comparisons
Easy installation via npm or Smithery

Use Cases

Tracking cryptocurrency prices and liquidity in real time
Building token and market analysis tools for AI assistants
Monitoring DEX volume, trading activity, and fee structures
Analyzing and comparing pools across multiple networks
Implementing portfolio trackers with real-time valuation
Automating technical analysis on historical price data
Assessing yield opportunities and impermanent loss
Fetching network-specific DEX and pool information
Cross-chain token analytics for comparative insights
Enhancing trading and market intelligence workflows for AI

README

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

bash
# 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

🚨 Version 1.2.0 Update Highlights

New: Batched token prices tool getTokenMultiPrices and enhanced getNetworkDexes parameters. See examples below.

🚨 Version 1.1.0 Update Notice

Breaking Change: The global /pools endpoint has been removed. If you're upgrading from v1.0.x, please see the Migration Guide below.

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:

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

Manual Installation

bash
# 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:

DexPaprika MCP Tutorial

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

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

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

Migration from v1.0.x to v1.1.0

⚠️ Breaking Changes

The global getTopPools function has been removed due to API deprecation.

Migration Steps

Before (v1.0.x):

javascript
// This will no longer work
getTopPools({ page: 0, limit: 10, sort: 'desc', orderBy: 'volume_usd' })

After (v1.1.0):

javascript
// Use network-specific queries instead
getNetworkPools({ network: 'ethereum', page: 0, limit: 10, sort: 'desc', orderBy: 'volume_usd' })
getNetworkPools({ network: 'solana', page: 0, limit: 10, sort: 'desc', orderBy: 'volume_usd' })

// To query multiple networks, call getNetworkPools for each network
// Or use the search function for cross-network searches

Benefits of the New Approach

  • Better Performance: Network-specific queries are faster and more efficient
  • More Relevant Results: Get pools that are actually relevant to your use case
  • Improved Scalability: Better suited for handling large amounts of data across networks

Technical Capabilities

The MCP server exposes these specific endpoints Claude can access:

Network Operations

Function Description Example
getNetworks Retrieves all supported blockchain networks and metadata {"id": "ethereum", "name": "Ethereum", "symbol": "ETH", ...}
getNetworkDexes Lists DEXes available on a specific network {"dexes": [{"id": "uniswap_v3", "name": "Uniswap V3", ...}]}

Pool Operations

Function Description Required Parameters Example Usage
getNetworkPools [PRIMARY] Gets top pools on a specific network network, limit Get Solana's highest liquidity pools
getDexPools Gets top pools for a specific DEX network, dex List pools on Uniswap V3
getPoolDetails Gets detailed pool metrics network, poolAddress Complete metrics for USDC/ETH pool
getPoolOHLCV Retrieves time-series price data for various analytical purposes (technical analysis, ML models, backtesting) network, poolAddress, start, interval 7-day hourly candles for SOL/USDC
getPoolTransactions Lists recent transactions in a pool network, poolAddress Last 20 swaps in a specific pool

Token Operations

Function Description Required Parameters Output Fields
getTokenDetails Gets comprehensive token data network, tokenAddress price_usd, volume_24h, liquidity_usd, etc.
getTokenPools Lists pools containing a token network, tokenAddress Returns all pools with liquidity metrics
getTokenMultiPrices Batched USD prices for multiple tokens network, tokens[] Array of { id, chain, price_usd }
search Finds tokens, pools, DEXes by name/id query Multi-entity search results

Example Usage

javascript
// 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 top pools on Ethereum (v1.1.0 approach):
const ethereumPools = await getNetworkPools({
  network: "ethereum",
  orderBy: "volume_usd",
  limit: 10
});

// 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
});

// 1.2.0: Get batched prices for multiple tokens (repeatable tokens query)
const prices = await getTokenMultiPrices({
  network: "ethereum",
  tokens: [
    "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", // WETH
    "0xdac17f958d2ee523a2206206994597c13d831ec7"  // USDT
  ]
});

Sample Prompts for Claude

When working with Claude, try these specific technical queries (updated for v1.1.0):

  • "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."
  • "Show me the top 10 pools on Ethereum by 24h volume using getNetworkPools."
  • "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."
  • "First get all available networks, then show me the top pools on each major network."

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

Migration Issues:

  • "getTopPools not found": This function has been removed. Use getNetworkPools instead with a specific network parameter
  • "410 Gone" errors: You're using a deprecated endpoint. Check the error message for guidance on the correct endpoint to use

Development

bash
# 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

Changelog

See CHANGELOG.md for detailed release notes and migration guides.

License

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

Additional Resources

Star History

Star History Chart

Repository Owner

coinpaprika
coinpaprika

Organization

Repository Details

Language JavaScript
Default Branch main
Size 123 KB
Contributors 2
License MIT License
MCP Verified Nov 12, 2025

Programming Languages

JavaScript
97.47%
Dockerfile
2.53%

Tags

Topics

claude-integration crypto-analysis-tool crypto-api cryptocurrency defi dex dexpaprika mcp model-context-protocol

Join Our Newsletter

Stay updated with the latest AI tools, news, and offers by subscribing to our weekly newsletter.

We respect your privacy. Unsubscribe at any time.

Related MCPs

Discover similar Model Context Protocol servers

  • Coincap MCP

    Coincap MCP

    Query live cryptocurrency data through Coincap's public API for desktop AI tools.

    Coincap MCP provides seamless access to cryptocurrency market data from Coincap's public API without requiring API keys or registration. Designed to integrate with Claude Desktop using the Model Context Protocol (MCP), it enables users to query crypto asset prices, market capitalization, and a list of available assets. Installation and configuration are streamlined through Smithery or direct setup. The tool includes sample prompts and exposes specialized tools for crypto price lookup and asset listing.

    • 89
    • MCP
    • QuantGeekDev/coincap-mcp
  • Dappier MCP Server

    Dappier MCP Server

    Real-time web search and premium data access for AI agents via Model Context Protocol.

    Dappier MCP Server enables fast, real-time web search and access to premium data sources, including news, financial markets, sports, and weather, for AI agents using the Model Context Protocol (MCP). It integrates seamlessly with tools like Claude Desktop and Cursor, allowing users to enhance their AI workflows with up-to-date, trusted information. Simple installation and configuration are provided for multiple platforms, leveraging API keys for secure access. The solution supports deployment via Smithery and direct installation with 'uv', facilitating rapid setup for developers.

    • 35
    • MCP
    • DappierAI/dappier-mcp
  • Hive Intelligence MCP Server

    Hive Intelligence MCP Server

    Unified MCP server delivering advanced cryptocurrency and Web3 analytics.

    Hive Intelligence MCP Server provides comprehensive cryptocurrency, DeFi, and Web3 analytics via the Model Context Protocol. It enables AI assistants to access and orchestrate over 200 specialized tools covering market data, on-chain analytics, portfolio tracking, and security analysis. The server offers both dynamic and category-specific analytics through a unified MCP interface, facilitating intelligent tool orchestration for diverse crypto data needs.

    • 7
    • MCP
    • hive-intel/hive-crypto-mcp
  • Twelve Data MCP Server

    Twelve Data MCP Server

    Seamless AI-powered access to financial market data via the Twelve Data API.

    Twelve Data MCP Server provides a Model Context Protocol-compliant server for integrating and accessing Twelve Data’s financial market API. It enables users and AI agents to retrieve historical data, real-time quotes, and instrument metadata for stocks, forex, and crypto using natural language or endpoint calls. The system leverages AI-driven routing, including OpenAI GPT-4o, to intelligently map plain English queries to relevant API endpoints for structured or conversational workflows. Integration options are available for platforms like Claude Desktop and VS Code, with flexible local or remote deployment.

    • 43
    • MCP
    • twelvedata/mcp
  • Exa MCP Server

    Exa MCP Server

    Fast, efficient web and code context for AI coding assistants.

    Exa MCP Server provides a Model Context Protocol (MCP) server interface that connects AI assistants to Exa AI’s powerful search capabilities, including code, documentation, and web search. It enables coding agents to retrieve precise, token-efficient context from billions of sources such as GitHub, StackOverflow, and documentation sites, reducing hallucinations in coding agents. The platform supports integration with popular tools like Cursor, Claude, and VS Code through standardized MCP configuration, offering configurable access to various research and code-related tools via HTTP.

    • 3,224
    • MCP
    • exa-labs/exa-mcp-server
  • Dune Analytics MCP Server

    Dune Analytics MCP Server

    Bridge Dune Analytics data seamlessly to AI agents via a Model Context Protocol server.

    Dune Analytics MCP Server provides a Model Context Protocol-compliant server that allows AI agents to access and interact with Dune Analytics data. It exposes tools to fetch the latest results of Dune queries and execute arbitrary queries, returning results in CSV format. The server is easily deployable, supports integration with platforms like Claude Desktop, and requires a Dune Analytics API key for operation.

    • 31
    • MCP
    • kukapay/dune-analytics-mcp
  • Didn't find tool you were looking for?

    Be as detailed as possible for better results