CoinMarketCap MCP Server
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| PORT | No | Port for Streamable HTTP transport method | 3000 |
| TELEMETRY_ENABLED | No | Enable telemetry | true |
| SUBSCRIPTION_LEVEL | No | Subscription level: Basic, Hobbyist, Startup, Standard, Professional, or Enterprise | Basic |
| COINMARKETCAP_API_KEY | Yes | API Key from CoinMarketCap.com |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Server capabilities have not been inspected yet.
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| cryptoCategoriesC | Returns information about all coin categories available on CoinMarketCap. |
| cryptoCategoryC | Returns information about a single coin category on CoinMarketCap. |
| cryptoCurrencyMapC | Returns a mapping of all cryptocurrencies to unique CoinMarketCap IDs. |
| getCryptoMetadataC | Returns all static metadata for one or more cryptocurrencies including logo, description, and website URLs. |
| allCryptocurrencyListingsC | Returns a paginated list of all active cryptocurrencies with latest market data. |
| cryptoQuotesLatestD | Returns the latest market quote for one or more cryptocurrencies. |
| dexInfoC | Returns all static metadata for one or more decentralised exchanges. |
| dexListingsLatestC | Returns a paginated list of all decentralised cryptocurrency exchanges including the latest aggregate market data. |
| dexNetworksListC | Returns a list of all networks to unique CoinMarketCap ids. |
| dexSpotPairsLatestC | Returns a paginated list of all active dex spot pairs with latest market data. |
| dexPairsQuotesLatestC | Returns the latest market quote for 1 or more spot pairs. |
| dexPairsOhlcvLatestC | Returns the latest OHLCV market values for one or more spot pairs for the current UTC day. |
| dexPairsOhlcvHistoricalC | Returns historical OHLCV data along with market cap for any spot pairs using time interval parameters. |
| dexPairsTradeLatestC | Returns up to the latest 100 trades for 1 spot pair. |
| exchangeAssetsC | Returns the assets/token holdings of an exchange. |
| exchangeInfoC | Returns metadata for one or more exchanges. |
| exchangeMapC | Returns a mapping of all exchanges to unique CoinMarketCap IDs. |
| globalMetricsLatestC | Returns the latest global cryptocurrency market metrics. |
| cmc100IndexHistoricalC | Returns an interval of historic CoinMarketCap 100 Index values based on the interval parameter. |
| cmc100IndexLatestA | Returns the lastest CoinMarketCap 100 Index value, constituents, and constituent weights. |
| fearAndGreedLatestA | Returns the latest CMC Crypto Fear and Greed Index value. |
| fearAndGreedHistoricalB | Returns historical CMC Crypto Fear and Greed Index values. |
| fiatMapC | Returns a mapping of all supported fiat currencies to unique CoinMarketCap IDs. |
| getPostmanCollectionA | Returns a Postman collection for the CoinMarketCap API. |
| priceConversionB | Convert an amount of one cryptocurrency or fiat currency into one or more different currencies. |
| keyInfoA | Returns API key details and usage stats. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 26 tools
Most tools have distinct purposes targeting specific resources like cryptocurrencies, exchanges, or indices, with clear boundaries. However, some overlap exists, such as 'cryptoCurrencyMap' and 'allCryptocurrencyListings' both listing cryptocurrencies, though one maps IDs and the other provides market data, which could cause minor confusion.
Naming is mixed with inconsistent patterns: some use camelCase (e.g., 'allCryptocurrencyListings'), others use snake_case (e.g., 'dex_pairs_ohlcv_historical'), and verb styles vary (e.g., 'getCryptoMetadata' vs. 'cryptoCategories'). This makes the set less predictable but still readable overall.
With 26 tools, the count is borderline high for a cryptocurrency data server, feeling slightly heavy but not extreme. It covers multiple domains like crypto, DEX, exchanges, and indices, which justifies the number, but it could be streamlined for better focus.
The tool set provides comprehensive coverage for cryptocurrency and market data, including listings, quotes, historical data, metadata, indices, and conversions. There are no obvious gaps; it supports full CRUD-like operations for data retrieval and analysis across the domain.