SyncDocs
Connect

Claude Desktop

Connect Claude Desktop (macOS, Windows) to Sync via MCP.

Claude Desktop talks to https://sync.buzz/mcp directly over HTTPS — no local bridge process needed.

Prerequisites

  • Claude Desktop 0.7.11 or newer (HTTP MCP support).
  • A personal access token (see Connect overview).

Configure

Open the Claude Desktop config file:

  • macOS~/Library/Application Support/Claude/claude_desktop_config.json
  • Windows%APPDATA%\Claude\claude_desktop_config.json

Add a sync entry under mcpServers:

{
  "mcpServers": {
    "sync": {
      "type": "http",
      "url": "https://sync.buzz/mcp",
      "headers": {
        "Authorization": "Bearer sync_pat_YOUR_TOKEN_HERE"
      }
    }
  }
}

Replace sync_pat_YOUR_TOKEN_HERE with the token you copied from Account → Tokens.

Restart Claude Desktop. You should see sync appear in the MCP servers list at the bottom of the chat window.

Verify

In a new chat, ask Claude:

List the features in my project.

Claude will call sync_status and sync_search and return real data from one of the projects your token reaches. If it says it can't connect, open Settings → Developer → "Open logs folder" and check the MCP log — most failures are wrong or revoked tokens.

Tips

  • One token can cover every project you're in — no need to juggle multiple mcpServers entries. Adjust scope from Account → Tokens without rotating the token.
  • Claude's effective role on each project follows your current membership. If you're demoted from member to viewer, the next call loses write access automatically.

On this page