MCP Catalogs
Home

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
Score4577
Official
Categories
FinanceDeveloper ToolsAI / LLM Tools
Developer ToolsAI / LLM ToolsOther
LanguagePythonTypeScript
Last commit10 mo agothis 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

  1. Clone the repository
git clone https://github.com/guangxiangdebizi/QMT-MCP
cd QMT-MCP
  1. Install dependencies
pip install -r requirements.txt
  1. Create .env file with your configuration (see README for details)
  1. Start XTQuant client and ensure login
  1. Start the QMT-MCP server
python main.py

Claude 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
Comparison generated from public README + GitHub signals. Last updated automatically.