Best for
- QuantConnect platform users who want MCP clients like Claude Desktop to operate their cloud quant workflow via natural language
- Quant traders seeking automated backtesting, optimization, and live deployment management
The official QuantConnect MCP server offers 64 tools covering the full quant workflow: project management, compilation, backtesting, optimization, live trading, and Object Store. Dockerized for cross-platform use and officially maintained, it is powerful but warrants caution with live-trading permissions; note the repo is currently deprecated in favor of the VSCode-embedded MCP.
The QuantConnect MCP Server is the official Python MCP server maintained by the QuantConnect team, acting as a bridge for AIs (such as Claude and OpenAI o3 Pro) to interact with the QuantConnect cloud platform. Through the QuantConnect API, the AI can update projects, write strategies, compile, backtest, run parameter optimizations, and deploy strategies to production live trading on your behalf. The implementation is tested and dockerized for easy cross-platform deployment, supporting linux/amd64 and linux/arm64. Note: this repository is now deprecated; the preferred way is the MCP embedded in VSCode.
{
"mcpServers": {
"quantconnect": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"-e",
"QUANTCONNECT_USER_ID",
"-e",
"QUANTCONNECT_API_TOKEN",
"-e",
"AGENT_NAME",
"--platform",
"<your_platform>",
"quantconnect/mcp-server"
],
"env": {
"QUANTCONNECT_USER_ID": "<your_user_id>",
"QUANTCONNECT_API_TOKEN": "<your_api_token>",
"AGENT_NAME": "MCP Server"
}
}
}
}