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

## Connect from Claude Desktop

Claude Desktop uses stdio transport and requires the `mcp-remote` bridge to connect to SSE servers. Make sure you have Node.js installed.

### Configuration

Edit your Claude Desktop config file:

* **macOS:** `~/Library/Application Support/Claude/claude_desktop_config.json`
* **Windows:** `%APPDATA%\Claude\claude_desktop_config.json`

Add the following:

```json
{
  "mcpServers": {
    "atomicwork": {
      "command": "npx",
      "args": [
        "mcp-remote",
        "https://<your-subdomain>.atomicwork.com/api/mcp/sse",
        "--header",
        "X-Api-Key: <your-api-key>"
      ]
    }
  }
}
```

### Prerequisites

* **Node.js** (v18+) must be installed and `npx` available on your PATH.
* The `mcp-remote` package is downloaded automatically by `npx` on first use.

### After Configuration

Fully quit and reopen Claude Desktop (not just close the window). The Atomicwork tools will appear in the tool picker when starting a new conversation.