Fetches a paginated list of all active cryptocurrencies with the latest market data
Retrieves detailed information about a specific cryptocurrency
Fetches the latest market quotes for one or more cryptocurrencies
CoinMarketCap Data provides AI-powered applications with real-time access to cryptocurrency market information. This MCP server connects to CoinMarketCap's API to retrieve comprehensive data about cryptocurrencies, including listings, quotes, and detailed coin information. With this integration, you can easily fetch current market data for thousands of cryptocurrencies, filter results by various parameters like price and market cap, and get detailed information about specific coins. This makes it ideal for financial analysis, market research, and building crypto-focused applications.
CoinMarketCap Data is a Model Context Protocol server that provides access to cryptocurrency market data through the CoinMarketCap API. This server enables AI assistants to retrieve real-time information about cryptocurrencies, including market listings, price quotes, and detailed coin information.
Before using this MCP server, you'll need:
The easiest way to install CoinMarketCap Data is through Smithery:
npx -y @smithery/cli install coin-api-mcp --client claude
git clone https://github.com/longmans/coin_api_mcp.git
cd coin_api_mcp
uv build
uv pip install .
The server requires a CoinMarketCap API key to function. You can provide it in two ways:
export COINMARKETCAP_API_KEY=your_api_key_here
python -m coin_api_mcp --api-key=your_api_key_here
To configure the MCP server for Claude, add the following to your Claude settings:
"mcpServers": {
"coin_api": {
"command": "python",
"args": ["-m", "coin_api_mcp"],
"env": {
"COINMARKETCAP_API_KEY": "your_api_key_here"
}
}
}
If you encounter issues, you may need to use the full path to your Python interpreter. You can find this by running which python
in your terminal.
Once configured, you can use the MCP server to retrieve cryptocurrency data in your conversations with Claude. Here are some example queries:
If you encounter issues:
For more detailed troubleshooting, refer to the GitHub repository.