Gets the current price of Bitcoin specifically
Gets the current price for any cryptocurrency available on the CoinCap API
Gets a list of all cryptocurrency assets available in the CoinCap API
CoinCap Cryptocurrency Data provides seamless access to real-time cryptocurrency information directly through Claude. This integration connects to CoinCap's public API, allowing you to query current prices, market caps, and other essential crypto metrics without requiring API keys or registration. With this tool, you can quickly check Bitcoin and Ethereum prices, explore available crypto assets, and analyze market data through simple natural language requests. It's perfect for crypto enthusiasts, traders, and researchers who need up-to-date cryptocurrency information during their conversations with Claude.
CoinCap Cryptocurrency Data allows you to access real-time cryptocurrency information from the CoinCap API directly through Claude. You can query current prices, market caps, and explore available crypto assets without needing API keys or registration.
Add this configuration to your Claude Desktop config file:
MacOS: ~/Library/Application\ Support/Claude/claude_desktop_config.json
Windows: %APPDATA%/Claude/claude_desktop_config.json
{
"mcpServers": {
"coincap": {
"command": "npx",
"args": ["coincap-mcp"]
}
}
}
For an easier installation process, you can use Smithery to automatically set up CoinCap for Claude Desktop:
npx -y @smithery/cli install coincap-mcp --client claude
After installation, restart Claude Desktop to activate the integration.
Once installed, you can interact with cryptocurrency data by asking Claude questions like:
The integration will automatically fetch the latest data from the CoinCap API and present it to you in a readable format.
If you want to build the server locally for development:
npm install
npm run build
npm run watch
Then update your Claude Desktop config to point to your local build:
{
"mcpServers": {
"coincap-mcp": {
"command": "/path/to/coincap-mcp/build/index.js"
}
}
}