binance-mcp-server vs everything
并排对比,帮你在这两个 MCP server 之间做选择。
binance-mcp-server by AnalyticAce | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 44 | ★ 85,748 |
| 30天用量 | — | — |
| 综合分 | 45 | 77 |
| 官方 | — | ✓ |
| 分类 | 金融数据AI / LLM 工具开发者工具 | 开发者工具AI / LLM 工具其它 |
| 实现语言 | Python | TypeScript |
| 最近提交 | 本月 | 本月 |
binance-mcp-server · 概述
Python 实现的 MCP 服务器,为 AI 代理提供币安交易所工具,支持交易、市场数据和账户管理。
everything · 概述
官方 MCP 测试服务器,展示协议全部功能,供客户端开发者使用。
binance-mcp-server · 使用场景
- AI 驱动的加密货币交易代理,可自动执行买卖订单
- 访问币安实时市场数据的金融分析工具
- 跟踪盈亏和持仓信息的投资组合管理系统
everything · 使用场景
- 测试 MCP 客户端实现是否支持所有协议功能
- 通过参考服务器学习 MCP 协议能力
- 验证客户端对不同传输方式的兼容性
binance-mcp-server · 安装
安装
# 使用 pip
pip install binance-mcp-server
# 使用 uv
uv add binance-mcp-server配置
设置环境变量:
export BINANCE_API_KEY="your_api_key_here"
export BINANCE_API_SECRET="your_api_secret_here"
export BINANCE_TESTNET="true"Claude Desktop 配置
添加到 claude_desktop_config.json:
{
"mcpServers": {
"binance": {
"command": "binance-mcp-server",
"args": [
"--api-key", "your_api_key",
"--api-secret", "your_secret",
"--binance-testnet"
]
}
}
}everything · 安装
NPX(推荐)
{
"mcpServers": {
"everything": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-everything"]
}
}
}Windows 用户请使用 cmd /c:
{
"mcpServers": {
"everything": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
}
}
}Docker
{
"mcpServers": {
"everything": {
"command": "docker",
"args": ["run", "-i", "--rm", "mcp/everything"]
}
}
}全局安装
npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everything