The CoinMarketCap MCP Integration is a Model Context Protocol (MCP) implementation for the CoinMarketCap API. It provides a standardized interface for accessing cryptocurrency market data, exchange information, and other blockchain-related metrics.
Add the following to your claude_desktop_config.json:
{
"mcpServers": {
"coinmarketcap": {
"command": "npx",
"args": ["@shinzolabs/coinmarketcap-mcp"],
"env": {
"COINMARKETCAP_API_KEY": "your-key-here",
"SUBSCRIPTION_LEVEL": "Basic"
}
}
}
}
git clone https://github.com/shinzo-labs/coinmarketcap-mcp.git
pnpm i
claude_desktop_config.json:{
"mcpServers": {
"coinmarketcap": {
"command": "node",
"args": ["/path/to/coinmarketcap-mcp/index.js"],
"env": {
"COINMARKETCAP_API_KEY": "your-key-here",
"SUBSCRIPTION_LEVEL": "Basic"
}
}
}
}
To install for Claude Desktop automatically via Smithery:
npx -y @smithery/cli install @shinzo-labs/coinmarketcap-mcp --client claude
cryptoCurrencyMap: Get mapping of all cryptocurrencies.getCryptoMetadata: Get metadata for one or more cryptocurrencies.allCryptocurrencyListings: Get latest market quote for 1-5000 cryptocurrencies.cryptoQuotesLatest: Get latest market quote for 1 or more cryptocurrencies.cryptoCategories: Get list of all cryptocurrency categories.cryptoCategory: Get metadata about a cryptocurrency category.exchangeMap: Get mapping of all exchanges.exchangeInfo: Get metadata for one or more exchanges.exchangeAssets: Get list of all assets available on an exchange.dexInfo: Get metadata for one or more decentralised exchanges.dexListingsLatest: Get latest market data for all DEXes.dexNetworksList: Get list of all networks with unique IDs.dexSpotPairsLatest: Get latest market data for all active DEX spot pairs.dexPairsQuotesLatest: Get latest market quotes for spot pairs.dexPairsOhlcvLatest: Get latest OHLCV data for spot pairs.dexPairsOhlcvHistorical: Get historical OHLCV data for spot pairs.dexPairsTradeLatest: Get latest trades for spot pairs.globalMetricsLatest: Get latest global cryptocurrency metrics.cmc100IndexLatest: Get latest CoinMarketCap 100 Index value and constituents.cmc100IndexHistorical: Get historical CoinMarketCap 100 Index values.priceConversion: Convert an amount of one cryptocurrency or fiat currency into another.getPostmanCollection: Get Postman collection for the API.fiatMap: Get mapping of all fiat currencies.keyInfo: Get API key usage and status.fearAndGreedLatest: Get latest Fear & Greed Index.fearAndGreedHistorical: Get historical Fear & Greed Index values.cryptoAirdrops: Get list of all cryptocurrency airdrops.cryptoAirdrop: Get metadata about a specific airdrop.historicalCryptocurrencyListings: Get historical market quotes for any cryptocurrency.cryptoQuotesHistorical: Get historical market quotes for any cryptocurrency.cryptoQuotesHistoricalV3: Get historical market quotes with advanced time-based intervals.exchangeQuotesHistorical: Get historical quotes for any exchange.globalMetricsHistorical: Get historical global cryptocurrency metrics.newCryptocurrencyListings: Get list of most recently added cryptocurrencies.cryptoTrendingGainersLosers: Get biggest gainers and losers in a given time period.cryptoTrendingLatest: Get top cryptocurrencies by search volume.cryptoTrendingMostVisited: Get most visited cryptocurrencies.cryptoOhlcvLatest: Get latest OHLCV market data for any cryptocurrency.cryptoOhlcvHistorical: Get historical OHLCV market data for any cryptocurrency.cryptoPricePerformanceStatsLatest: Get price performance statistics for any cryptocurrency.cryptoMarketPairsLatest: Get latest market pairs for any cryptocurrency.exchangeListingsLatest: Get latest market data for all exchanges.exchangeMarketPairsLatest: Get latest market pairs for any exchange.exchangeQuotesLatest: Get latest market quotes for one or more exchanges.contentLatest: Get latest cryptocurrency news and content.contentPostsTop: Get top cryptocurrency posts.contentPostsLatest: Get latest cryptocurrency posts.contentPostsComments: Get comments for a specific post.communityTrendingTopic: Get trending topics in the cryptocurrency community.communityTrendingToken: Get trending tokens in the cryptocurrency community.blockchainStatisticsLatest: Get latest statistics for one or more blockchains.Contributions are welcomed and encouraged. Contact [email protected] with any questions, comments, or concerns.
MCP Implementation for CoinMarketCap.