by coinpaprika
Provides on-demand access to real-time and historical cryptocurrency, DEX, token, and liquidity data across multiple blockchains via a Model Context Protocol server, enabling AI assistants to query market trends and analytics through natural language.
Provides a standardized MCP interface for retrieving live and historical data on crypto tokens, decentralized exchanges, pools, and market activity across several blockchains. The server is designed for AI assistants (e.g., Claude) to fetch price, volume, liquidity, OHLCV, and transaction information without writing custom API calls.
npm install -g dexpaprika-mcp
or, preferred for one‑off usage, npx dexpaprika-mcp
.dexpaprika-mcp
(or npx dexpaprika-mcp
). The server listens on http://localhost:8010
by default.{
"mcpServers": {
"dexpaprika": {
"command": "npx",
"args": ["dexpaprika-mcp"]
}
}
}
getNetworkPools
, getTokenDetails
, getPoolOHLCV
, etc., either from Claude prompts or directly via HTTP requests.getNetworkPools
) – fast, scalable, and replace the removed global /pools
endpoint.getPoolDetails
, getPoolOHLCV
, getPoolTransactions
).getTokenDetails
, getTokenPools
).getNetworks
, getNetworkDexes
).search
).Q: Do I need an API key? A: No. The server uses the public DexPaprika API and works out‑of‑the‑box.
Q: What happened to the /pools
endpoint?
A: It was removed in v1.1.0. Use getNetworkPools
with a specific network
parameter instead.
Q: How can I query multiple networks at once?
A: Call getNetworkPools
separately for each network or use the search
function for cross‑network searches.
Q: What are the rate limits? A: Free tier limits are 60 requests per minute. Exceeding this returns HTTP 429.
Q: How far back does OHLCV data go? A: Data is available from the creation date of the token/pool, with a maximum query range of 1 year per request.
Q: Can I run the server on a custom port?
A: Yes. Set the PORT
environment variable before starting the server (e.g., PORT=9000 npx dexpaprika-mcp
).
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.
# 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
Breaking Change: The global /pools
endpoint has been removed. If you're upgrading from v1.0.x, please see the Migration Guide below.
To install DexPaprika for Claude Desktop automatically via Smithery:
npx -y @smithery/cli install @coinpaprika/dexpaprika-mcp --client claude
# 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.
Watch our step-by-step tutorial on setting up and using the DexPaprika MCP server:
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.
The global getTopPools
function has been removed due to API deprecation.
Before (v1.0.x):
// This will no longer work
getTopPools({ page: 0, limit: 10, sort: 'desc', orderBy: 'volume_usd' })
After (v1.1.0):
// 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
The MCP server exposes these specific endpoints Claude can access:
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", ...}]} |
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 |
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 |
search |
Finds tokens, pools, DEXes by name/id | query |
Multi-entity search results |
// 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
});
When working with Claude, try these specific technical queries (updated for v1.1.0):
Common Issues:
Migration Issues:
getNetworkPools
instead with a specific network parameter# 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
See CHANGELOG.md for detailed release notes and migration guides.
This project is licensed under the MIT License - see the LICENSE file for details.
Please log in to share your review and rating for this MCP.
{ "mcpServers": { "dexpaprika": { "command": "npx", "args": [ "dexpaprika-mcp" ] } } }
Explore related MCPs that share similar capabilities and solve comparable challenges
by goat-sdk
Enables AI agents to send and receive payments, purchase goods and services, execute investment strategies, tokenize assets, and obtain financial insights by leveraging blockchains, stablecoins, and wallets.
by financial-datasets
Provides access to income statements, balance sheets, cash flow statements, stock prices, market news, and cryptocurrency data through MCP tools for AI assistants.
by alpacahq
Enables large language models to trade stocks and options, retrieve real‑time and historical market data, and manage portfolios using plain English commands through a local or remote MCP server.
by XeroAPI
Provides a bridge between the Model Context Protocol and Xero's API, enabling standardized access to Xero accounting and business features.
by stefanoamorelli
Provides an MCP server that connects AI models to SEC EDGAR filings, enabling real‑time retrieval of company filings, financial statements, and insider‑trading data with exact XBRL precision and verifiable filing references.
by ariadng
Enables AI LLMs to execute trades on the MetaTrader 5 platform through the Model Context Protocol.
by calvernaz
Provides access to Alpha Vantage stock market data via an MCP server, supporting stdio and HTTP streaming modes with optional OAuth 2.1 authentication.
by kukapay
Integrates the Freqtrade cryptocurrency trading bot with MCP, exposing its REST API as tools for AI agents to perform automated trading operations.
by kukapay
Provides a comprehensive set of cryptocurrency technical analysis indicators and ready‑to‑use trading strategies through an MCP interface, enabling AI agents and applications to generate buy, hold, or sell signals.