quanttogo-mcp-servers
Provides access to quantitative trading signals and performance metrics for US market strategies originating from the QuantConnect platform.
QuantToGo MCP Servers
MCP (Model Context Protocol) servers for QuantToGo - a quantitative trading platform providing live trading signals, market data, and portfolio management through AI-native interfaces.
Overview
This repository contains three MCP servers that expose QuantToGo's quantitative trading capabilities:
Server | Description | Tools |
quanttogo-signals | Real-time trading signals from live quant strategies | 3 tools |
quanttogo-market-data | Product catalog, NAV history, backtest reports | 5 tools |
quanttogo-portfolio | Portfolio positions, dual-track performance, trade history | 6 tools |
Plus an HTTP server for remote access (MCP Connector mode).
Quick Start
Installation
npm install quanttogo-mcp-serversOr clone and build:
git clone https://github.com/michaeljiangmingfeng-debug/quanttogo-mcp-servers.git
cd quanttogo-mcp-servers
npm install
npm run buildConfiguration
Set environment variables:
export QUANTTOGO_API_BASE="https://www.quanttogo.com" # API endpoint
export QUANTTOGO_API_KEY="your-api-key" # API authentication key
export QUANTTOGO_USER_ID="your-user-id" # Your user IDUsage with Claude Desktop
Add to your claude_desktop_config.json:
{
"mcpServers": {
"quanttogo-signals": {
"command": "npx",
"args": ["tsx", "src/signals-server.ts"],
"cwd": "/path/to/quanttogo-mcp-servers",
"env": {
"QUANTTOGO_API_KEY": "your-api-key",
"QUANTTOGO_USER_ID": "your-user-id"
}
},
"quanttogo-market-data": {
"command": "npx",
"args": ["tsx", "src/market-data-server.ts"],
"cwd": "/path/to/quanttogo-mcp-servers",
"env": {
"QUANTTOGO_API_KEY": "your-api-key"
}
},
"quanttogo-portfolio": {
"command": "npx",
"args": ["tsx", "src/portfolio-server.ts"],
"cwd": "/path/to/quanttogo-mcp-servers",
"env": {
"QUANTTOGO_API_KEY": "your-api-key",
"QUANTTOGO_USER_ID": "your-user-id"
}
}
}
}Remote HTTP Mode (Connector)
For remote access via Streamable HTTP:
npm run serve
# Server starts at http://localhost:3000/mcpAvailable Tools
Signals Server (quanttogo-signals)
Tool | Description |
| Get latest BUY/SELL signals with strategy, symbol, quantity, price |
| Execute or skip a pending signal |
| Signal performance metrics and win rate |
Market Data Server (quanttogo-market-data)
Tool | Description |
| List all quantitative trading products |
| Detailed product info with parameters |
| Historical NAV data with daily returns |
| Strategy backtest with Sharpe ratio, drawdown |
| Search by risk level, currency, strategy type |
Portfolio Server (quanttogo-portfolio)
Tool | Description |
| Complete portfolio overview |
| AUTO vs MANUAL track performance comparison |
| Current open positions across strategies |
| Historical trade records |
| User subscription status |
| Return, drawdown, Sharpe ratio, win rate |
Architecture
quanttogo-mcp-servers/
├── src/
│ ├── common/
│ │ ├── client.ts # QuantToGo API client
│ │ └── types.ts # Shared TypeScript types
│ ├── signals-server.ts # Signals MCP Server (stdio)
│ ├── market-data-server.ts # Market Data MCP Server (stdio)
│ ├── portfolio-server.ts # Portfolio MCP Server (stdio)
│ └── http-server.ts # Combined HTTP server (Connector mode)
├── package.json
├── tsconfig.json
├── glama.json
├── LICENSE
└── README.mdKey Concepts
Dual-Track System
QuantToGo uses a unique dual-track system:
AUTO track: All signals are automatically executed (virtual trading)
MANUAL track: Only user-confirmed signals are executed
This allows users to compare their decision-making against the algorithm's full execution.
Signal Sources
Signals come from two quantitative platforms:
QC (QuantConnect): US market strategies
JQ (JoinQuant): China market strategies
Development
# Run individual servers in dev mode
npm run dev:signals
npm run dev:market-data
npm run dev:portfolio
# Run HTTP server
npm run serve
# Build for production
npm run buildLicense
MIT
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/michaeljiangmingfeng-debug/quanttogo-mcp-servers'
If you have feedback or need assistance with the MCP directory API, please join our Discord server