Skip to main content
Choose your client below. All clients connect to the same endpoint

Claude Desktop

Add to your claude_desktop_config.json:
{
  "mcpServers": {
    "atlas": {
      "url": "https://api.atlas.kitchen/mcp",
      "headers": {
        "X-Api-Key": "YOUR_API_KEY",
        "X-Merchant-Id": "YOUR_MERCHANT_ID"
      }
    }
  }
}
Restart Claude Desktop. Atlas tools will appear automatically

Claude Code

claude mcp add atlas --transport http \
  --url https://api.atlas.kitchen/mcp \
  --header "X-Api-Key: YOUR_API_KEY" \
  --header "X-Merchant-Id: YOUR_MERCHANT_ID"
Or add to your project’s .mcp.json:
{
  "mcpServers": {
    "atlas": {
      "url": "https://api.atlas.kitchen/mcp",
      "headers": {
        "X-Api-Key": "YOUR_API_KEY",
        "X-Merchant-Id": "YOUR_MERCHANT_ID"
      }
    }
  }
}

Cursor

Go to Settings → MCP Servers → Add Server. Select Streamable HTTP transport
URL: https://api.atlas.kitchen/mcp
Header: X-Api-Key: YOUR_API_KEY
Header: X-Merchant-Id: YOUR_MERCHANT_ID

VS Code

Add to your workspace .vscode/mcp.json:
{
  "mcpServers": {
    "atlas": {
      "url": "https://api.atlas.kitchen/mcp",
      "headers": {
        "X-Api-Key": "YOUR_API_KEY",
        "X-Merchant-Id": "YOUR_MERCHANT_ID"
      }
    }
  }
}
VS Code requires the MCP extension or a compatible MCP client that supports Streamable HTTP

Other clients

For any MCP-compatible client that supports Streamable HTTP:
SettingValue
Endpointhttps://api.atlas.kitchen/mcp
TransportStreamable HTTP (POST)
ProtocolMCP 2025-06-18
HeadersX-Api-Key, X-Merchant-Id
For clients that only support SSE, use mcp-remote as a bridge:
npx -y mcp-remote https://api.atlas.kitchen/mcp \
  --header "X-Api-Key: YOUR_API_KEY" \
  --header "X-Merchant-Id: YOUR_MERCHANT_ID"