ultimate_mcp_server vs QMT-MCP
Side-by-side comparison to help you pick between these two MCP servers.
ultimate_mcp_server by Dicklesworthstone | QMT-MCP by guangxiangdebizi | |
|---|---|---|
| Stars | ★ 149 | ★ 181 |
| 30d uses | — | — |
| Score | 85 | 45 |
| Official | — | — |
| Categories | AI / LLM ToolsBrowser AutomationFile System | FinanceDeveloper ToolsAI / LLM Tools |
| Language | Python | Python |
| Last commit | 2 mo ago | 10 mo ago |
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.
QMT-MCP · Summary
QMT-MCP is a modular quantitative trading system integrating FastMCP with XTQuant for intelligent strategy generation and real-time trading execution.
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
QMT-MCP · Use cases
- AI assistant helping traders implement and execute quantitative strategies
- Automating stock trading decisions based on generated signals
- Backtesting trading strategies with performance metrics
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_serverQMT-MCP · Install
Installation Steps
Requirements
- Python 3.8+
- XTQuant/QMT client (installed on Windows)
Setup
- Clone the repository
git clone https://github.com/guangxiangdebizi/QMT-MCP
cd QMT-MCP- Install dependencies
pip install -r requirements.txt- Create
.envfile with your configuration (see README for details)
- Start XTQuant client and ensure login
- Start the QMT-MCP server
python main.pyClaude Desktop Integration
Add to Claude Desktop configuration:
{
"mcpServers": {
"quantmcp": {
"command": "python",
"args": ["path/to/QMT-MCP/main.py"],
"env": {
"QMT_PATH": "your QMT installation path\userdata_mini"
}
}
}
}