CoinCap加密货币分析
STDIO提供加密货币实时价格和市场分析
提供加密货币实时价格和市场分析
A Model Context Protocol (MCP) server that provides comprehensive cryptocurrency analysis using the CoinCap API. This server offers real-time price data, market analysis, and historical trends through an easy-to-use interface.
This is a fork of the original mcp-crypto-price project by Tracey Russell
✅ What’s changed:
💡 Shoutout to Coin Cap for their “stake-to-API” subscription model—something I hope more API providers adopt. Subscription fatigue is real!
Package Note: This project is hosted on GitHub as
wazzan/mcp-coincap-jj
but published to npm as@bujaayjaay/mcp-coincap-jj
If you’re new to MCP servers, this guide provides step-by-step instructions to get you started.
I tested this on a Windows 11 VM to avoid cluttering my Mac—worked flawlessly!
Claude Desktop Config Locations:
~/Library/Application Support/Claude/claude_desktop_config.json
%APPDATA%/Claude/claude_desktop_config.json
🟢 Windows Setup Guide (Same Steps for Any MCP Client)
Note you can use these same instructions for any other MCP Client
{ "mcpServers": { "mcp-coincap-jj": { "command": "npx", "args": [ "-y", "@bujaayjaay/mcp-coincap-jj" ], "env": { "COINCAP_API_KEY": "INPUT_YOUR_API_KEY_HERE" } } } }
For developers and contributors who want to work on the project locally:
npm install @bujaayjaay/mcp-coincap-jj
git clone https://github.com/wazzan/mcp-coincap-jj.git cd mcp-coincap-jj npm install # Install dependencies npm run build # Compile TypeScript code npm test # Run tests to verify everything works npm start # Starts the MCP server locally
MCP Server Config for Local Testing (Windows Example)
{ "mcpServers": { "mcp-coincap-jj": { "command": "cmd.exe", "args": [ "/c", "C:\\Program Files\\nodejs\\npx.cmd", "C:\\Users\\YOUR-WINDOWS-USERNAME\\repos\\github\\mcp-coincap-jj" ], "env": { "COINCAP_API_KEY": "YOUR_API_KEY_HERE" }, "disabled": false, "alwaysAllow": [] } } }
🔧 Pro Tip: Using absolute paths on Windows ensures a smooth experience, especially when running multiple environments.
Although it takes away some of the personal learning experience, it’s a great quick start!
smithery install @bujaayjaay/mcp-coincap-jj
You now have to obtain an API Key from CoinCap to use the updated v3 API as v2 is being deprecated: (https://pro.coincap.io/api-docs/)
get-crypto-price
Gets current price and 24h stats for any cryptocurrency, including:
get-market-analysis
Provides detailed market analysis including:
get-historical-analysis
Analyzes historical price data with:
This project is licensed under the MIT License