Skip to main content
Coming Soon — The Execution Server is under development. Documentation will be finalized at launch.

Overview

The Execution Server is the live trading layer of QuantX. It will provide tools to route orders to supported brokers and exchanges, manage open positions, and monitor execution quality — all callable directly from your MCP client.

Connection

{
  "mcpServers": {
    "quantx-execution": {
      "url": "https://quantx-execution.quantspace.io/mcp",
      "headers": {
        "Authorization": "Bearer <your_quantspace_token>"
      }
    }
  }
}

Planned Tools

ToolDescription
submit_ordersSubmit a batch of orders from a signal or portfolio output
get_positionsRetrieve current open positions
cancel_ordersCancel pending orders
get_execution_reportRetrieve fill report and execution quality metrics

Planned Workflow

run_signal (Signals Server)
  → output_url
    → submit_orders (Execution Server)
      → get_execution_report

Back to QuantX overview

Return to the QuantX server list