> ## Documentation Index
> Fetch the complete documentation index at: https://docs.soundchecklive.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Claude Code

> Add Soundcheck to Claude Code with one CLI command. Live member and public MCP URLs on mcp.soundchecklive.io.

Connect **Claude Code** to your Soundcheck account with a single `claude mcp add` command. Member tools use OAuth via Clerk. The assistant acts as you.&#x20;

Full capability list and confirmation gates: [Connect your AI to Soundcheck (MCP)](/integrations/mcp-server).&#x20;

## Member (signed-in)

```bash theme={null}
claude mcp add --transport http soundcheck https://mcp.soundchecklive.io/mcp  # pragma: allowlist secret
```

On first tool use, Claude Code follows the `401` + Protected Resource Metadata challenge and opens a browser sign-in (Clerk). Verify with `/mcp`: `soundcheck` should show as **connected**.&#x20;

## Public (anonymous)

```bash theme={null}
claude mcp add --transport http soundcheck-public https://mcp.soundchecklive.io/public/mcp  # pragma: allowlist secret
```

No sign-in. Org lookup, default positions, and booking/sponsorship intake only.

## Manual config (optional)

Add to `~/.claude.json` or a project `.mcp.json`. Member URL: `https://mcp.soundchecklive.io/mcp`&#x20;

```jsonc theme={null}
{
  "mcpServers": {
    "sc": {
      "type": "http",
      "url": "https://mcp.soundchecklive.io/mcp"
    }
  }
}
```

<Info>
  Official MCP Registry: `io.soundchecklive/soundcheck` **0.1.1-ts**. Prefer `mcp.soundchecklive.io` over any `api.soundchecklive.io` path. Claude's Connectors Directory listing (`soundcheck`) is submitted for review and **not live** in Browse connectors yet; Claude Code does not need that listing.&#x20;
</Info>

## After you connect

* Consequential writes are **confirmation-gated**.
* Multi-org: tools use your **active** org; pass `organization_id` when needed.
* Privacy: [soundchecklive.io/privacy](https://soundchecklive.io/privacy).&#x20;

## Related

<CardGroup cols={2}>
  <Card title="MCP overview" icon="robot" href="/integrations/mcp-server">
    Capabilities, tools, and security model.
  </Card>

  <Card title="Claude.ai / Desktop" icon="message" href="/integrations/mcp-claude">
    Custom connector today; directory when listed.
  </Card>

  <Card title="ChatGPT" icon="comments" href="/integrations/mcp-chatgpt">
    Plugin when listed; custom MCP today.
  </Card>

  <Card title="Cursor" icon="arrow-pointer" href="/integrations/mcp-cursor">
    Tools & MCP manual URL setup.
  </Card>
</CardGroup>
