MCP Server
Amazon Q
Introduction
Amazon Q is an AI coding assistant that can connect various Large Language Models (LLM) to the QuantConnect MCP Server. This page explains how to set up and use the server with Amazon Q in Local Platform. To set up Amazon Q with the other IDEs or the CLI, see Get started with Amazon Q Developer in the Amazon Q documentation.
Getting Started
To connect Amazon Q in Local Platform to the QC MCP Server, follow these steps:
- In Local Platform, install the Amazon Q extension.
- In the left navigation menu of Local Platform, right-click the
Amazon Q icon and then click . - Edit the ~ / .aws / amazonq / mcp.json file on your machine to be the following configuration:
- Create a new project or open an existing one.
- In the top navigation bar, click .
- In the Chat panel, click the Amazon Q tab.
- In the Chat section, click the
Configure MCP servers icon. - In the MCP servers section, click the
Refresh MCP servers icon. - Click the
close icon to return to the chat area.
This layout enables you to view the QuantConnect Project panel and the Amazon Q panel at the same time.

{
"useLegacyMcpJson": true,
"mcpServers": {
"qc-mcp": {
"type": "http",
"url": "http://localhost:3001/",
"disabled": false
}
},
"name": "q_ide_default",
"prompt": "",
"toolAliases": {}
}
The QC MCP server should start up and show that tools are available.

Models
Amazon Q supports several versions of the Claude LLM that you can use in the Amazon Q panel. To change the model, click the model name at the bottom of the Amazon Q panel and then click the name of the model to use.
To view all the available models for Amazon Q, see Selecting a model for Amazon Q chat in IDEs in the Amazon Q documentation.
Quotas
There are no quotas on the QuantConnect API, but Amazon Q and the LLMs have some. To view the quotas, see the Pricing page in the Amazon Q documentation and Does Claude have any message limits? on the Anthropic website.
Troubleshooting
The following sections explain some issues you may encounter and how to resolve them.
Service Outages
The MCP server relies on the QuantConnect API and the client application. To check the status of the QuantConnect API, see our Status page. To check the status of Claude, see the Anthropic Status page.
Other Issues
For more information about troubleshooting the MCP server in Local Platform, see Troubleshooting your MCP configuration in the Amazon Q documentation.
Examples
The following examples demonstrate the MCP server with Amazon Q.
Example 1: Hello World
To test the server and client are working and connected, enter the following prompt into the Amazon Q chat:
> Read the open project.
The agent should call the read_open_project tool.
Example 2: Strategy Development and Deployment
This example uses Amazon Q in Local Platform to brainstorm new strategy ideas, edit files, run backtests, and deploy to paper trading.