binance-mcp-server vs everything
Side-by-side comparison to help you pick between these two MCP servers.
binance-mcp-server by AnalyticAce | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 44 | ★ 85,748 |
| 30d uses | — | — |
| Score | 45 | 77 |
| Official | — | ✓ |
| Categories | FinanceAI / LLM ToolsDeveloper Tools | Developer ToolsAI / LLM ToolsOther |
| Language | Python | TypeScript |
| Last commit | this month | this month |
binance-mcp-server · Summary
A Python MCP server providing AI agents with Binance exchange tools for trading, market data, and account management.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
binance-mcp-server · Use cases
- AI-powered cryptocurrency trading agents that can execute buy/sell orders automatically
- Financial analysis tools that access real-time market data from Binance
- Portfolio management systems that track PnL and position information
everything · Use cases
- Testing MCP client implementations against all protocol features
- Learning MCP protocol capabilities through a reference server
- Validating client compatibility with different transport methods
binance-mcp-server · Install
Installation
# Using pip
pip install binance-mcp-server
# Using uv
uv add binance-mcp-serverConfiguration
Set environment variables:
export BINANCE_API_KEY="your_api_key_here"
export BINANCE_API_SECRET="your_api_secret_here"
export BINANCE_TESTNET="true"Claude Desktop Configuration
Add to claude_desktop_config.json:
{
"mcpServers": {
"binance": {
"command": "binance-mcp-server",
"args": [
"--api-key", "your_api_key",
"--api-secret", "your_secret",
"--binance-testnet"
]
}
}
}everything · Install
NPX (recommended)
{
"mcpServers": {
"everything": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-everything"]
}
}
}On Windows, use cmd /c:
{
"mcpServers": {
"everything": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
}
}
}Docker
{
"mcpServers": {
"everything": {
"command": "docker",
"args": ["run", "-i", "--rm", "mcp/everything"]
}
}
}Global install
npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everything