Getting Started
To connect local MCP clients (like Claude Desktop) to the QC MCP Server, follow these steps:
- Install and open Docker.
- In a terminal, pull the MCP Server from Docker
docker pull quantconnect/mcp-server
- Install and open Claude Desktop.
- In Claude Desktop, click File > Settings > Developer > Edit Config.
- Edit the claude_desktop_config.json file to include the following quantconnect configuration, then restart Claude.
For more information, see the MCP Getting Started.
{
"mcpServers": {
"quantconnect": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"-e", "QUANTCONNECT_USER_ID",
"-e", "QUANTCONNECT_API_TOKEN",
"--name",
"quantconnect-mcp-server",
"quantconnect/mcp-server"
],
"env": {
"QUANTCONNECT_USER_ID": "<your_user_id>",
"QUANTCONNECT_API_TOKEN": "<your_api_token>"
}
}
}
}