mcp-server
Verified Safeby QuantConnect
Overview
The QuantConnect MCP Server acts as a bridge, enabling AIs to interact with the QuantConnect cloud platform for tasks such as updating projects, writing/testing trading strategies, backtesting, and deploying to live trading.
Installation
docker run -i --rm -e QUANTCONNECT_USER_ID=<your_user_id> -e QUANTCONNECT_API_TOKEN=<your_api_token> -e AGENT_NAME="MCP Server" --platform <your_platform> quantconnect/mcp-serverEnvironment Variables
- QUANTCONNECT_USER_ID
- QUANTCONNECT_API_TOKEN
- AGENT_NAME
- MCP_TRANSPORT
- MOUNT_SOURCE_PATH
- MOUNT_DST_PATH
Security Notes
The server uses environment variables for sensitive credentials (QuantConnect User ID and API Token), which is a good practice. API authentication involves hashing the API token with a timestamp and base64 encoding, providing a layer of security. Network requests are made over HTTPS to the official QuantConnect API. The `organization_workspace.py` component, which handles local file access, is designed to be mounted as read-only within a Docker container, mitigating local file system write risks. No direct 'eval' or obvious obfuscation was found in the provided source code.
Similar Servers
alpaca-mcp-server
A comprehensive Model Context Protocol (MCP) server for Alpaca's Trading API, enabling natural language trading operations through AI assistants for stocks, options, crypto, portfolio management, and real-time market data.
mcp-servers
Provides a curated collection of Model Context Protocol (MCP) server configurations to enable AI agents to interact with various developer tools and services.
crypto-indicators-mcp
Provides an MCP server with over 50 cryptocurrency technical analysis indicators and strategies to empower AI trading agents in analyzing market trends and developing quantitative strategies.
finance-trading-ai-agents-mcp
A specialized MCP server for financial analysis and quantitative trading, designed to deploy local financial MCP services with a departmental architecture for LLM integration and algorithmic trading.