Server data from the Official MCP Registry
Real-time crypto market data: prices, tickers, exchanges, OHLCV candles, and metadata.
Real-time crypto market data: prices, tickers, exchanges, OHLCV candles, and metadata.
Remote endpoints: streamable-http: https://mcp.coinpaprika.com/streamable-http sse: https://mcp.coinpaprika.com/sse
CoinPaprika MCP is a well-architected cryptocurrency data server with proper authentication handling, no malicious patterns, and appropriate permissions for its purpose. The codebase demonstrates solid security practices including structured error handling, input validation, and secure credential management. Minor code quality observations exist but do not materially impact security. Supply chain analysis found 2 known vulnerabilities in dependencies (0 critical, 2 high severity).
3 files analyzed · 5 issues found
Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.
This plugin requests these system permissions. Most are normal for its category.
Set these up before or after installing:
Available as Local & Remote
This plugin can run on your machine or connect to a hosted endpoint. during install.
From the project's GitHub README.
A Model Context Protocol (MCP) server that provides on-demand access to CoinPaprika's cryptocurrency market data API. Built specifically for AI assistants like Claude to programmatically fetch real-time prices, tickers, exchange data, OHLCV candles, and more with zero configuration.
# Install globally
npm install -g @coinpaprika/mcp
# Start the server
coinpaprika-mcp
# Or run directly without installation
npx @coinpaprika/mcp@latest
CoinPaprika MCP connects Claude to live crypto market data for 8,000+ coins. No API key required for free-tier features. Installation | Configuration | API Reference
Prefer zero setup? Use the hosted MCP server at mcp.coinpaprika.com — no installation, no API key, same 30 tools. See Hosted Alternative for transport endpoints.
To install CoinPaprika MCP for Claude Desktop automatically via Smithery:
npx -y @smithery/cli install @coinpaprika/coinpaprika-mcp --client claude
# Install globally (recommended for regular use)
npm install -g @coinpaprika/mcp
# Start the server
coinpaprika-mcp
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": {
"coinpaprika": {
"command": "npx",
"args": ["@coinpaprika/mcp@latest"]
}
}
}
{
"mcpServers": {
"coinpaprika": {
"command": "npx",
"args": ["@coinpaprika/mcp@latest"],
"env": {
"COINPAPRIKA_API_KEY": "your-api-key-here"
}
}
}
}
# Add as MCP server in Claude Code
claude mcp add coinpaprika -- npx @coinpaprika/mcp@latest
# With API key
COINPAPRIKA_API_KEY=your-key claude mcp add coinpaprika -- npx @coinpaprika/mcp@latest
If you prefer zero setup, point any MCP-compatible client directly at the hosted server at mcp.coinpaprika.com. The landing page provides setup instructions and documentation. The following transport endpoints are available:
| Transport | Endpoint | Use Case |
|---|---|---|
| Streamable HTTP | https://mcp.coinpaprika.com/streamable-http | Recommended for most clients |
| SSE | https://mcp.coinpaprika.com/sse | Legacy SSE transport |
| JSON-RPC | https://mcp.coinpaprika.com/json-rpc | Direct JSON-RPC |
Note: These are MCP protocol endpoints — they won't display anything in a browser. Visit mcp.coinpaprika.com for the landing page.
{
"mcpServers": {
"coinpaprika": {
"type": "streamable-http",
"url": "https://mcp.coinpaprika.com/streamable-http"
}
}
}
| Tool | Description |
|---|---|
getCapabilities | Server capabilities, workflow patterns, validation rules, and best practices. Start here. |
status | Server status and configuration |
getGlobal | Global market overview: total market cap, 24h volume, BTC dominance ('how is the market doing') |
| Tool | Description | Required Parameters |
|---|---|---|
getCoins | List all coins (id, name, symbol, rank); no prices, use getTickers for prices | — |
getCoinById | Coin project details (description, team, links); no price, use getTickersById | coinId |
getCoinEvents | Upcoming events for a coin | coinId |
getCoinExchanges | Exchanges listing a coin | coinId |
getCoinMarkets | Markets/exchanges trading a coin ('where to buy X', 'X price on Binance') | coinId |
| Tool | Description | Required Parameters |
|---|---|---|
getTickers | Current prices + market caps for top coins by market cap ('top 5 coins', market snapshot) | — |
getTickersById | Current price, market cap & 24h change of one coin ('BTC price', 'how much is ETH') | coinId |
getCoinOHLCVLatest | Latest full-day OHLC candle (not the live price) | coinId |
getCoinOHLCVToday | Today's in-progress OHLC candle | coinId |
priceConverter | Convert an amount between currencies ('0.5 BTC in USD') | baseCurrencyId, quoteCurrencyId |
| Tool | Description | Required Parameters |
|---|---|---|
getExchanges | List all exchanges | — |
getExchangeByID | Exchange details | exchangeId |
getExchangeMarkets | Markets on a specific exchange | exchangeId |
| Tool | Description | Required Parameters |
|---|---|---|
getTags | List all tags/categories | — |
getTagById | Tag details | tagId |
getPeopleById | Person/team member details | personId |
| Tool | Description | Required Parameters |
|---|---|---|
getPlatforms | List contract platforms | — |
getContracts | Contracts on a platform | platformId |
getTickerByContract | Token price by contract address (on-chain/DeFi tokens) | platformId, contractAddress |
| Tool | Description | Required Parameters |
|---|---|---|
search | Search coins/exchanges/people/tags by name; use FIRST to get an id | q |
resolveId | Resolve a name/symbol to canonical id; call FIRST before price tools | type, query |
These tools require a paid CoinPaprika API plan. Without an API key, they return guidance directing you to upgrade.
| Tool | Plan Required | Description |
|---|---|---|
getCoinOHLCVHistorical | Starter+ | Historical OHLCV candle data |
getTickersHistoricalById | Starter+ | Historical ticker snapshots |
getHistoricalTickerByContract | Starter+ | Historical ticker by contract |
getChangelogIDs | Starter+ | Changelog of coin ID changes |
keyInfo | Pro | Verify API key details |
getMappings | Business | Cross-platform ID mappings |
The free tier provides access to most tools without any API key. For paid-tier features (historical data, mappings, etc.), set the COINPAPRIKA_API_KEY environment variable:
# Set via environment variable
export COINPAPRIKA_API_KEY=your-api-key-here
coinpaprika-mcp
# Or pass inline
COINPAPRIKA_API_KEY=your-api-key-here npx @coinpaprika/mcp@latest
Get an API key at coinpaprika.com/api/pricing.
// Start by getting capabilities for workflow guidance:
const caps = await getCapabilities();
// Get global market overview:
const global = await getGlobal();
// Find a coin by name:
const results = await search({ q: "ethereum" });
// Get detailed coin info:
const bitcoin = await getCoinById({ coinId: "btc-bitcoin" });
// Get current ticker with USD and BTC quotes:
const ticker = await getTickersById({ coinId: "eth-ethereum", quotes: "USD,BTC" });
// Get OHLCV data for today:
const ohlcv = await getCoinOHLCVToday({ coinId: "btc-bitcoin" });
// Convert 1 BTC to USD:
const conversion = await priceConverter({
baseCurrencyId: "btc-bitcoin",
quoteCurrencyId: "usd-us-dollars",
amount: 1
});
// List top 10 exchanges:
const exchanges = await getExchanges({ limit: 10 });
// Resolve fuzzy query to exact coin ID:
const resolved = await resolveId({ type: "coin", query: "cardano" });
Common Issues:
CP429_RATE_LIMIT errors, wait for daily reset at midnight UTCsymbol-name format (e.g., btc-bitcoin, not bitcoin or BTC). Use search or resolveId to find correct IDsCP402_INSUFFICIENT_PLAN or CP403_FORBIDDEN mean the endpoint requires a paid plan. Set COINPAPRIKA_API_KEY environment variablelimit parameter# Clone the repository
git clone https://github.com/coinpaprika/coinpaprika-mcp.git
cd coinpaprika-mcp
# Install dependencies
npm install
# Run in development
npm start
# Build for production
npm run build
See CHANGELOG.md for detailed release notes.
This project is licensed under the MIT License - see the LICENSE file for details.
Be the first to review this server!
by Modelcontextprotocol · Developer Tools
Read, search, and manipulate Git repositories programmatically
by Toleno · Developer Tools
Toleno Network MCP Server — Manage your Toleno mining account with Claude AI using natural language.
by mcp-marketplace · Developer Tools
Create, build, and publish Python MCP servers to PyPI — conversationally.