CryptoAnalysisMCP is a powerful cryptocurrency analysis tool that provides real-time price data, technical indicators, chart pattern detection, and trading signals for over 7 million cryptocurrencies. It connects with major data providers and DEXes to offer comprehensive analysis for both major cryptocurrencies and obscure tokens, supporting everything from long-term investment analysis to technical trading.
git clone https://github.com/M-Pineapple/CryptoAnalysisMCP.git
cd CryptoAnalysisMCP
./build-release.sh
~/Library/Application Support/Claude/claude_desktop_config.json
:{
"mcpServers": {
"crypto-analysis": {
"command": "/path/to/CryptoAnalysisMCP/crypto-analysis-mcp",
"env": {
"COINPAPRIKA_API_KEY": "your-free-api-key-here"
}
}
}
}
sudo cp ./.build/release/CryptoAnalysisMCP /usr/local/bin/crypto-analysis-mcp
Then use this in Claude Desktop config:
{
"mcpServers": {
"crypto-analysis": {
"command": "/usr/local/bin/crypto-analysis-mcp"
}
}
}
crypto-analysis:get_crypto_price
symbol: "BTC"
crypto-analysis:get_technical_indicators
symbol: "ETH"
timeframe: "daily"
crypto-analysis:detect_chart_patterns
symbol: "SOL"
timeframe: "4h"
crypto-analysis:get_trading_signals
symbol: "ADA"
risk_level: "moderate"
timeframe: "daily"
crypto-analysis:get_full_analysis
symbol: "DOT"
timeframe: "weekly"
risk_level: "aggressive"
crypto-analysis:get_support_resistance
symbol: "MATIC"
timeframe: "daily"
crypto-analysis:multi_timeframe_analysis
symbol: "AVAX"
crypto-analysis:get_token_liquidity
symbol: "PEPE"
network: "ethereum" (optional)
crypto-analysis:search_tokens_by_network
network: "solana"
query: "meme" (optional)
limit: 20
crypto-analysis:compare_dex_prices
symbol: "SHIB"
network: "ethereum"
crypto-analysis:get_network_pools
network: "ethereum"
sort_by: "volume_usd"
limit: 10
crypto-analysis:get_available_networks
"Give me a quick technical analysis of BTC"
"Is ETH bullish or bearish right now?"
"What's the trend for SOL?"
"Provide swing trading setup for BTC with 3-7 day outlook"
"Analyze ETH patterns on daily timeframe for swing trades"
"Give me entry, stop loss, and targets for swing trading SOL"
"Show me conservative trading strategy for BTC"
"What's the aggressive play on ETH?"
"Give me risk-adjusted entries for SOL"
"What's the price of WOJAK?"
"Analyze that new PEPE fork on Ethereum"
"Show me price data for [obscure token]"
"What's the liquidity for SHIB across all DEXes?"
"Show me the top pools on Solana"
"Compare PEPE prices on different DEXes"
The MCP now supports 7+ million tokens through a dual-provider system:
Supported networks include Ethereum, BSC, Polygon, Arbitrum, Optimism, Base, Solana, Avalanche, Fantom, Aptos, Sui, and many more.
⚠️ Day traders and scalpers NEED a Pro subscription ($99/mo). The free tier only provides daily candles.
What works WITHOUT any API key:
What REQUIRES a Pro API key ($99/mo):
Free Tier:
daily
- Daily candles only ✅Pro Tier ($99/mo):
conservative
- Lower risk, focus on strong signalsmoderate
- Balanced approach (default)aggressive
- Higher risk, more sensitive signalsclaude_desktop_config.json
is absolutechmod +x crypto-analysis-mcp
If you encounter 402 errors, consider:
To add this MCP server to Claude Code, run this command in your terminal:
claude mcp add-json "crypto-analysis" '{"command":"/path/to/crypto-analysis-mcp","env":{"COINPAPRIKA_API_KEY":"your-free-api-key-here"}}'
See the official Claude Code MCP documentation for more details.
There are two ways to add an MCP server to Cursor. The most common way is to add the server globally in the ~/.cursor/mcp.json
file so that it is available in all of your projects.
If you only need the server in a single project, you can add it to the project instead by creating or adding it to the .cursor/mcp.json
file.
To add a global MCP server go to Cursor Settings > Tools & Integrations and click "New MCP Server".
When you click that button the ~/.cursor/mcp.json
file will be opened and you can add your server like this:
{
"mcpServers": {
"crypto-analysis": {
"command": "/path/to/crypto-analysis-mcp",
"env": {
"COINPAPRIKA_API_KEY": "your-free-api-key-here"
}
}
}
}
To add an MCP server to a project you can create a new .cursor/mcp.json
file or add it to the existing one. This will look exactly the same as the global MCP server example above.
Once the server is installed, you might need to head back to Settings > MCP and click the refresh button.
The Cursor agent will then be able to see the available tools the added MCP server has available and will call them when it needs to.
You can also explicitly ask the agent to use the tool by mentioning the tool name and describing what the function does.
To add this MCP server to Claude Desktop:
1. Find your configuration file:
~/Library/Application Support/Claude/claude_desktop_config.json
%APPDATA%\Claude\claude_desktop_config.json
~/.config/Claude/claude_desktop_config.json
2. Add this to your configuration file:
{
"mcpServers": {
"crypto-analysis": {
"command": "/path/to/crypto-analysis-mcp",
"env": {
"COINPAPRIKA_API_KEY": "your-free-api-key-here"
}
}
}
}
3. Restart Claude Desktop for the changes to take effect