Documentation
Applications
Last updated on 19. 5. 2026 by Tomas Vanek
MCP Integration
Page contents
What is MCP
The Model Context Protocol (MCP) is an open standard that lets AI assistants — such as Claude, OpenAI, or Gemini — connect to external applications and interact with them through well-defined tools. StrategyQuant X ships a built-in MCP server that exposes your projects, strategies, and databanks directly to any MCP-compatible AI client.
This is the first release of the SQX MCP integration. The current toolset covers project management and strategy inspection; more tools will be added in future builds.
Enable MCP in SQX
The MCP server starts automatically with SQX. It shares the port with Remote Access — by default 8080, or the first available port on your machine. The exact URL is always shown in the MCP Server dialog: open the application menu (gear icon, top-right) and click MCP Server…

The dialog shows the server URL and the exact commands needed to connect your AI client.

Connect an AI client
Claude Desktop
Add the following block to your
claude_desktop_config.json
file (find it under Settings → Developer inside Claude Desktop):
{
"mcpServers": {
"sqx": {
"type": "http",
"url": "http://localhost:8080/mcp"
}
}
}
Restart Claude Desktop after saving the file. The SQX tools will appear automatically in the next conversation.
Available tools
Once connected, your AI client has access to the following SQX tools. You can list them at any time by typing list tools of sqx mcp in Claude Code.

| Tool | Description |
|---|---|
| list_projects | List all available SQX projects. |
| list_strategies | List strategies inside a given project. |
| list_databanks | List all databanks in a project. |
| get_strategy_stats | Return performance statistics for a specific strategy (fitness, net profit, number of trades, Sharpe ratio, drawdown, and more). |
| run_project | Start running a project (e.g. launch the Builder). |
| stop_project | Stop a currently running project. |
Usage examples
Running a project
Ask Claude to find and start a project by name. Claude will list the available projects, identify the right one, and call run_project — all in a single conversation turn.

Inspecting strategy statistics
Ask Claude to list strategies from a databank and retrieve detailed stats for any of them. The results are presented as a structured table directly in the conversation.

Was this article helpful? The article was useful The article was not useful
excellent !