# Connect Claude Desktop to Switchy

Switchy gives your AI client your team's shared memory over MCP.

## 1. Get your token
In Switchy, open **Connectors → Connect your AI**, pick a Project, and generate a connection token. Copy it (you only see it once).

## 2. Configure Claude Desktop
1. In Claude Desktop, open Settings → Developer → Edit Config. That opens (or creates) claude_desktop_config.json — on macOS under ~/Library/Application Support/Claude/, on Windows under %APPDATA%\Claude\.
2. Paste the JSON below inside the top-level "mcpServers" object. If you already have other servers, add "switchy" alongside them.
3. Save the file, then fully quit and reopen Claude Desktop.
4. Start a new chat — "switchy" appears under your tools. Ask it to recall a recent decision to confirm it works.

```json
{
  "mcpServers": {
    "switchy": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://switchy.build/mcp/rpc",
        "--header",
        "Authorization: Bearer <YOUR_TOKEN>"
      ]
    }
  }
}
```

Replace `<YOUR_TOKEN>` with the token you copied.

## 3. Test it
Restart your client, then ask it to recall something from your Project. Back in Switchy, **Test connection** confirms your client reached your memory.

Your token only ever sees your own view — your private memories plus the Project/org memory you belong to. Revoke it any time from Connections.
