binance-mcp-server vs filesystem
并排对比,帮你在这两个 MCP server 之间做选择。
binance-mcp-server by AnalyticAce | filesystem by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 44 | ★ 85,748 |
| 30天用量 | — | — |
| 综合分 | 45 | 77 |
| 官方 | — | ✓ |
| 分类 | 金融数据AI / LLM 工具开发者工具 | 本地文件系统开发者工具效率工具 |
| 实现语言 | Python | TypeScript |
| 最近提交 | 本月 | 本月 |
binance-mcp-server · 概述
Python 实现的 MCP 服务器,为 AI 代理提供币安交易所工具,支持交易、市场数据和账户管理。
filesystem · 概述
功能丰富的文件系统操作 MCP 服务器,具有动态目录访问控制功能。
binance-mcp-server · 使用场景
- AI 驱动的加密货币交易代理,可自动执行买卖订单
- 访问币安实时市场数据的金融分析工具
- 跟踪盈亏和持仓信息的投资组合管理系统
filesystem · 使用场景
- 使 AI 模型能够读取和写入项目文件进行开发
- 允许 Claude 或其他 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"
]
}
}
}filesystem · 安装
安装
使用 NPX
{
"mcpServers": {
"filesystem": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-filesystem",
"/path/to/allowed/directory"
]
}
}
}使用 Docker
{
"mcpServers": {
"filesystem": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"--mount", "type=bind,src=/path/to/allowed/dir,dst=/projects/allowed/dir",
"mcp/filesystem",
"/projects"
]
}
}
}VS Code 扩展
点击 README 中的安装按钮直接在 VS Code 中安装。