Your Mac.
Your Claude.
Anywhere.

Run Claude Code on your Mac and access it from anywhere through a standard Anthropic-compatible API endpoint.

Get started →
$
Run this on your Mac
One command — registers, installs, starts, and prints your credentials

        

Requires Node.js 18+ and the Claude Code CLI (npm i -g @anthropic-ai/claude-code). The script auto-detects your machine name, registers it, saves config to ~/.claudepbridge/, and sets up a LaunchAgent so the daemon starts on login.

   Registered → cpb-a1b2c3d4e5f6...

  API Key     cpb-a1b2c3d4e5f67890abcdef12345678
  Endpoint    https://claudep.supar.work/v1/messages
  Dashboard   http://localhost:3457
import anthropic

client = anthropic.Anthropic(
    api_key="YOUR_TOKEN",
    base_url="https://claudep.supar.work",
)

message = client.messages.create(
    model="sonnet",
    max_tokens=1024,
    messages=[{"role": "user", "content": "Hello!"}],
)
print(message.content[0].text)
1

Run one command on your Mac

Registers your machine, installs the daemon, and starts it automatically.

2

Get your API key

The setup prints your token and endpoint — use them like the Anthropic API.

3

Use from anywhere

Point any Anthropic SDK at your endpoint — requests route to your Mac and execute via claude -p.