binance-mcp-server vs ultimate_mcp_server
Side-by-side comparison to help you pick between these two MCP servers.
binance-mcp-server by AnalyticAce | ultimate_mcp_server by Dicklesworthstone | |
|---|---|---|
| Stars | ★ 44 | ★ 149 |
| 30d uses | — | — |
| Score | 45 | 85 |
| Official | — | — |
| Categories | FinanceAI / LLM ToolsDeveloper Tools | AI / LLM ToolsBrowser AutomationFile System |
| Language | Python | Python |
| Last commit | this month | 2 mo ago |
binance-mcp-server · Summary
A Python MCP server providing AI agents with Binance exchange tools for trading, market data, and account management.
ultimate_mcp_server · Summary
Comprehensive MCP server providing dozens of capabilities for AI agents including LLM delegation, browser automation, document processing, and cognitive memory systems.
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
ultimate_mcp_server · Use cases
- Complex document processing and analysis with OCR and structured data extraction
- Web automation and research across multiple sites with browser control
- Cost-optimized AI workflows through intelligent task delegation between models
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"
]
}
}
}ultimate_mcp_server · Install
Installation
- Clone the repository:
git clone https://github.com/Dicklesworthstone/ultimate_mcp_server.git
cd ultimate_mcp_server- Install dependencies:
pip install -e .- For Claude Desktop integration, add to your claude_desktop_config.json:
{
"mcpServers": {
"ultimate-mcp": {
"command": "python",
"args": ["-m", "ultimate_mcp_server"],
"env": {
"PYTHONPATH": "."
}
}
}
}- Run the server:
python -m ultimate_mcp_server