This guide explains how to integrate the Atlantis MCP Server with Amazon Q Developer, enabling AI-assisted development with access to Atlantis templates and documentation.
To add the Atlantis MCP (Model Context Protocol) server to Amazon Q Developer, the easiest is to use the MCP Tools configuration (wrench icon in Q Chat window).
This will open “MCP Servers” configuration panel. Click on the plus
+ sign to add the new server with the following
options:
atlantis-mcphttphttps://mcp.atlantis.63klabs.net/mcp/v1Then choose “Save”
Configure which tools run without confirmation.
After saving, from the “atlantis-mcp” list of tools, choose “Always Allow” for each tool you do not wish to give confirmation for.
In Amazon Q chat:
Show me available Atlantis templates
Create or edit .idea/amazonq.xml:
<component name="AmazonQSettings">
<option name="mcpServers">
<map>
<entry key="atlantis">
<value>
<McpServer>
<option name="url" value="https://mcp.atlantis.63klabs.net/mcp/v1" />
<option name="name" value="Atlantis" />
<option name="enabled" value="true" />
</McpServer>
</value>
</entry>
</map>
</option>
</component>Register for a free account to get an API key with higher rate limits. After registration, copy your unique API key and add it to the configuration.
x-api-key with your key as the value
(ex atl_your_api_key_here)Add the API key header to your .idea/amazonq.xml:
<component name="AmazonQSettings">
<option name="mcpServers">
<map>
<entry key="atlantis">
<value>
<McpServer>
<option name="url" value="https://mcp.atlantis.63klabs.net/mcp/v1" />
<option name="name" value="Atlantis" />
<option name="enabled" value="true" />
<option name="headers">
<map>
<entry key="x-api-key" value="atl_your_api_key_here" />
</map>
</option>
</McpServer>
</value>
</entry>
</map>
</option>
</component>If you need to regenerate your key, visit your profile page.