ultimate_mcp_server vs qmt-mcp-server
Side-by-side comparison to help you pick between these two MCP servers.
ultimate_mcp_server by Dicklesworthstone | qmt-mcp-server by jm12138 | |
|---|---|---|
| Stars | ★ 149 | ★ 18 |
| 30d uses | — | — |
| Score | 85 | 40 |
| Official | — | — |
| Categories | AI / LLM ToolsBrowser AutomationFile System | FinanceDeveloper ToolsAI / LLM Tools |
| Language | Python | Python |
| Last commit | 2 mo ago | 11 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-server · Summary
An MCP server for QMT platform that provides stock market data download and query functionality.
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-server · Use cases
- Financial analysts researching stock performance trends
- Investors tracking multiple stock portfolios
- AI assistants providing real-time market data and analysis
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-server · Install
Installation
- Install QMT-MCP-Server
$ pip install git+https://github.com/jm12138/qmt-mcp-server- Start QMT or MiniQMT client
- Start MCP server
stdio mode (for local use)
$ qmt_mcp_server_stdioSSE mode (for server deployment)
$ qmt_mcp_server_sse --host 0.0.0.0 --port 8000- Client configuration
Claude Desktop
{
"mcpServers": {
"qmt-mcp-server": {
"command": "qmt_mcp_server_stdio"
}
}
}VS Code
{
"servers": {
"qmt-mcp-server": {
"command": "qmt_mcp_server_stdio"
}
}
}