> 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.

# Claude Code

## Connect from Claude Code

Claude Code supports SSE transport natively. You can add the Atomicwork MCP server with a single CLI command.

### Quick Setup

```bash
claude mcp add --transport sse atomicwork \
  https://<your-subdomain>.atomicwork.com/api/mcp/sse \
  --header "X-Api-Key: <your-api-key>"
```

### Configuration File

The command above writes to `~/.claude.json`. You can also create a project-scoped `.mcp.json` in your repo root:

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

### Scopes

| Scope   | Flag                      | Location         | Shared via VCS? |
| ------- | ------------------------- | ---------------- | --------------- |
| Local   | `--scope local` (default) | `~/.claude.json` | No              |
| Project | `--scope project`         | `.mcp.json`      | Yes             |
| User    | `--scope user`            | `~/.claude.json` | No              |

### Verify Connection

Inside a Claude Code session, run:

```
/mcp
```

You should see `atomicwork` listed with its available tools.