Claude Code

View as Markdown

Connect from Claude Code

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

Quick Setup

$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:

1{
2 "mcpServers": {
3 "atomicwork": {
4 "type": "sse",
5 "url": "https://<your-subdomain>.atomicwork.com/api/mcp/sse",
6 "headers": {
7 "X-Api-Key": "${env:ATOMICWORK_API_KEY}"
8 }
9 }
10 }
11}

Scopes

ScopeFlagLocationShared via VCS?
Local--scope local (default)~/.claude.jsonNo
Project--scope project.mcp.jsonYes
User--scope user~/.claude.jsonNo

Verify Connection

Inside a Claude Code session, run:

/mcp

You should see atomicwork listed with its available tools.