QMT-MCP vs everything
Side-by-side comparison to help you pick between these two MCP servers.
QMT-MCP by guangxiangdebizi | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 181 | ★ 85,748 |
| 30d uses | — | — |
| Score | 45 | 77 |
| Official | — | ✓ |
| Categories | FinanceDeveloper ToolsAI / LLM Tools | Developer ToolsAI / LLM ToolsOther |
| Language | Python | TypeScript |
| Last commit | 10 mo ago | this month |
QMT-MCP · Summary
QMT-MCP is a modular quantitative trading system integrating FastMCP with XTQuant for intelligent strategy generation and real-time trading execution.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
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
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
QMT-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"
}
}
}
}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