This guide explains how to integrate the Atlantis MCP Server with Claude Desktop, enabling Claude to access Atlantis templates, documentation, and starter code.
Claude Desktop stores MCP server configurations in a JSON file:
macOS:
~/Library/Application Support/Claude/claude_desktop_config.json
Windows:
%APPDATA%\Claude\claude_desktop_config.json
Linux:
~/.config/Claude/claude_desktop_config.json
Open the configuration file and add the Atlantis MCP Server:
{
"mcpServers": {
"atlantis": {
"url": "https://mcp.atlantis.63klabs.net/mcp/v1",
"description": "Atlantis Templates and Scripts Platform MCP Server"
}
}
}Close and reopen Claude Desktop to load the new configuration.
In a new conversation with Claude, ask:
Can you list available Atlantis templates?
Claude should respond with a list of templates from the MCP server.
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:
{
"mcpServers": {
"atlantis": {
"url": "https://mcp.atlantis.63klabs.net/mcp/v1",
"headers": {
"x-api-key": "atl_your_api_key_here"
},
"description": "Atlantis Templates and Scripts Platform MCP Server"
}
}
}If you need to regenerate your key, visit your profile page.