> For clean Markdown of any page, append .md to the page URL.
> For a complete documentation index, see https://developer-test.atomicwork.com/llms.txt.
> For full documentation content, see https://developer-test.atomicwork.com/llms-full.txt.
> For AI client integration (Claude Code, Cursor, etc.), connect to the MCP server at https://developer-test.atomicwork.com/_mcp/server.

# Cursor

## Connect from Cursor

Cursor supports SSE transport natively. You can configure it via a JSON file or through the Settings UI.

### Configuration File

Create `.cursor/mcp.json` in your project root (or `~/.cursor/mcp.json` for global config):

```json
{
  "mcpServers": {
    "atomicwork": {
      "url": "https://<your-subdomain>.atomicwork.com/api/mcp/sse",
      "headers": {
        "X-Api-Key": "${env:ATOMICWORK_API_KEY}"
      }
    }
  }
}
```

### Via Settings UI

1. Open **Settings** > **MCP**
2. Click **Add New MCP Server**
3. Select **SSE** as the transport type
4. Enter the server URL: `https://<your-subdomain>.atomicwork.com/api/mcp/sse`
5. Add the header `X-Api-Key` with your API key

### Notes

* Project-level config (`.cursor/mcp.json`) takes precedence over global config.
* Cursor auto-detects the transport type from the server response, so the `type` field is optional.
* Supports `${env:VAR_NAME}` interpolation for secrets in headers.