加密交易员 Mcp 工具适用于 Claude 桌面
概览
什么是 Crypto-Trader-MCP-ClaudeDesktop?
Crypto-Trader-MCP-ClaudeDesktop 是一个强大的工具,旨在通过 CoinGecko API 提供加密货币市场数据。该应用程序专为 Claude Desktop 量身定制,使用户能够访问实时市场信息,从而更容易跟踪加密货币趋势并做出明智的交易决策。
Crypto-Trader-MCP-ClaudeDesktop 的特点
- 实时数据访问:直接从 CoinGecko API 获取最新的加密货币市场数据。
- 用户友好的界面:设计简便,适合新手和经验丰富的交易者使用。
- MCP(模型上下文协议)集成:利用 MCP 框架增强数据处理和处理能力。
- 公共代码库:该项目是开源的,允许用户根据需要贡献和修改代码。
- 跨平台兼容性:在 Claude Desktop 上无缝运行,确保在不同操作系统上的流畅用户体验。
如何使用 Crypto-Trader-MCP-ClaudeDesktop
- 安装:从 GitHub 下载代码库,并按照 README 文件中的安装说明进行操作。
- API 密钥设置:从 CoinGecko 获取 API 密钥,并在应用程序中进行配置以开始获取市场数据。
- 导航界面:熟悉用户界面,您可以查看各种加密货币指标,如价格、市场总值和交易量。
- 数据分析:利用提供的数据分析市场趋势并做出明智的交易决策。
- 社区支持:通过 GitHub 问题或讨论与社区互动,解决任何疑问或贡献。
常见问题解答
问:Crypto-Trader-MCP-ClaudeDesktop 是免费使用的吗?
答:是的,这是一个开源项目,可以在 GitHub 上免费使用。
问:我可以为该项目贡献吗?
答:当然可以!欢迎贡献。您可以分叉代码库,进行更改,并提交拉取请求。
问:它支持哪些平台?
答:该应用程序专为 Claude Desktop 设计,但也可以适配其他平台。
问:我该如何报告错误或问题?
答:您可以在 GitHub 代码库的“问题”部分报告任何错误或问题。
问:我在哪里可以找到文档?
答:文档可在代码库中找到,包括设置说明和使用指南。
详情
Crypto Trader MCP Tool for Claude Desktop
An MCP (Model Context Protocol) tool that provides cryptocurrency market data using the CoinGecko API, specifically designed for Claude Desktop.
Tutorial
For a detailed guide on setting up and using this tool, check out our Medium tutorial: Tutorial: Using Claude Desktop with Crypto Trader MCP Tool to Get Real-Time Cryptocurrency Data
Features
- Real-time cryptocurrency price data
- Detailed market information for cryptocurrencies
- Historical price charts
- Cryptocurrency search functionality
- Trending cryptocurrencies tracking
- Global market statistics
Setup
-
Ensure you have Python 3.10 or higher installed
-
Install dependencies:
pip install -r requirements.txt
Integration with Claude Desktop
- Configure your MCP settings in Claude Desktop by adding the following to your MCP configuration:
{
"mcpServers": {
"crypto-trader": {
"command": "py",
"args": ["-3.13", "C:\\Path\\To\\Your\\Crypto-Trader-MCP-ClaudeDesktop\\main.py"]
}
}
}
- Replace the path with the full path to your main.py file
- Run the server using:
py -3.13 main.py
- Keep the server running while using Claude Desktop
Available Tools
1. get_crypto_price
Get real-time cryptocurrency price information:
{
"symbol": "BTC",
"name": "bitcoin",
"price": 65423.12,
"change_24h": 2.5,
"volume_24h": 28345678901,
"market_cap": 1234567890123,
"timestamp": "2025-03-15T10:30:00"
}
2. get_crypto_market_data
Get detailed market information for a cryptocurrency:
{
"symbol": "ETH",
"name": "Ethereum",
"market_cap_rank": 2,
"current_price": 3521.48,
"market_cap": 423456789012,
"total_volume": 15834567890,
"high_24h": 3580.25,
"low_24h": 3475.62,
"price_change_24h": 45.86,
"price_change_percentage_24h": 1.32,
"circulating_supply": 120283456,
"total_supply": 120283456,
"max_supply": null,
"ath": 4878.26,
"ath_date": "2021-11-10T14:24:11.849Z",
"atl": 0.432979,
"atl_date": "2015-10-20T00:00:00.000Z"
}
3. get_crypto_historical_data
Get historical price data for a cryptocurrency:
{
"symbol": "BTC",
"name": "bitcoin",
"days": 30,
"prices": [
{
"date": "2025-02-15T00:00:00",
"price": 62150.23
},
{
"date": "2025-02-16T00:00:00",
"price": 63421.15
}
// ... more data points
]
}
4. search_crypto
Search for cryptocurrencies:
{
"results": [
{
"id": "bitcoin",
"symbol": "BTC",
"name": "Bitcoin"
},
{
"id": "bitcoin-cash",
"symbol": "BCH",
"name": "Bitcoin Cash"
}
// ... more results
]
}
5. get_trending_crypto
Get trending cryptocurrencies:
{
"trending_coins": [
{
"id": "pendle",
"name": "Pendle",
"symbol": "PENDLE",
"market_cap_rank": 85,
"price_btc": 0.00002356
}
// ... more trending coins
]
}
6. get_global_crypto_data
Get global cryptocurrency market data:
{
"active_cryptocurrencies": 12875,
"markets": 892,
"total_market_cap_usd": 2347890123456,
"total_volume_usd": 89723456789,
"market_cap_percentage": {
"BTC": 52.4,
"ETH": 18.2
// ... more cryptocurrencies
},
"updated_at": "2025-03-15T10:30:00"
}
Sample Queries
You can ask Claude Desktop questions like:
- "What's the current price of Bitcoin?"
- "Show me detailed market data for Ethereum"
- "What's the price history of Dogecoin for the last 30 days?"
- "Search for cryptocurrencies related to 'sol'"
- "Which cryptocurrencies are trending today?"
- "What's the total cryptocurrency market capitalization right now?"
Error Handling
All tools include proper error handling and will return an error message if something goes wrong:
{
"error": "Failed to fetch price for INVALID_SYMBOL"
}
Troubleshooting
If the MCP server is not working in Claude Desktop:
- Make sure the server is running - you should see output when you start the script
- Verify the path in your settings is correct and absolute
- Make sure Python 3.10+ is in your system PATH
- Check that all dependencies are installed
- Try restarting Claude Desktop
- Check logs for any error messages
Rate Limits
This tool uses the free CoinGecko API which has rate limits. Please be aware that very frequent requests may be throttled by the API.
License
MIT License
Server配置
{
"mcpServers": {
"crypto-trader-mcp-claude-desktop": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"ghcr.io/metorial/mcp-container--saintdoresh--crypto-trader-mcp-claudedesktop--crypto-trader-mcp-claude-desktop",
"python main.py"
],
"env": {}
}
}
}