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

# Connect Claude

> Add RevBridge to Claude in a couple of minutes — no API key, no installation.

There's nothing to install and no key to copy. You add RevBridge to Claude, sign in once in your browser, and start asking.

## Before you start

* A RevBridge account, and access to the **organization** you want to work with.
* Claude — either the desktop app or [Claude Code](https://claude.com/claude-code).

<Note>
  No API key needed. You sign in as yourself, and Claude gets the same access you
  already have.
</Note>

## Add RevBridge

<Tabs>
  <Tab title="Claude Desktop">
    <Steps>
      <Step title="Open connector settings">
        In Claude, go to **Settings → Connectors** and choose to add a custom
        connector.
      </Step>

      <Step title="Paste the RevBridge address">
        ```
        https://mcp.revbridge.ai/mcp
        ```
      </Step>

      <Step title="Sign in and approve">
        A RevBridge sign-in page opens in your browser. Sign in, pick the
        organization you want to work with, and approve.

        <Check>Check that the page says **RevBridge** and the address is `revbridge.ai` before approving.</Check>
      </Step>
    </Steps>
  </Tab>

  <Tab title="Claude Code">
    <Steps>
      <Step title="Add the connection">
        ```bash theme={null}
        claude mcp add --transport http revbridge https://mcp.revbridge.ai/mcp
        ```
      </Step>

      <Step title="Sign in and approve">
        Your browser opens a RevBridge sign-in page. Sign in, pick your
        organization, and approve.

        <Check>Check that the page says **RevBridge** and the address is `revbridge.ai` before approving.</Check>
      </Step>
    </Steps>
  </Tab>
</Tabs>

## Check it worked

Ask Claude:

```
Which RevBridge organization am I connected to?
```

It should answer with your organization name and the channels enabled on your account. That one question exercises everything — sign-in, the right account, and access to your data.

## Try it out

Start with questions that only read data — none of these change anything:

```
Which campaigns are running right now?

Show me last month's funnel and how each channel performed.

How many people opened an email in the last 30 days but never purchased?

Run a cohort analysis on my account and tell me where retention breaks.
```

When you're ready to act, ask for a draft — Claude prepares it and stops for your approval:

```
Draft a win-back campaign for customers who haven't purchased in 90 days,
then show me the audience size and cost before sending anything.
```

<Warning>
  Anything that sends real messages shows a confirmation first, with the audience
  size, cost per channel, and your wallet balance. Read it before approving —
  that's the last stop before customers receive something.
</Warning>

## If something goes wrong

<AccordionGroup>
  <Accordion title="It says there's no organization">
    Your sign-in wasn't tied to an organization. Open the RevBridge dashboard,
    select the organization, then connect again. If you belong to more than one,
    make sure you picked the right one on the approval screen.
  </Accordion>

  <Accordion title="Claude sees RevBridge but every request fails">
    The organization you approved may not have API access provisioned yet.
    Contact [support@revbridge.ai](mailto:support@revbridge.ai) and mention which
    organization you're using.
  </Accordion>

  <Accordion title="A campaign I own isn't found">
    You're probably connected to a different organization than the one that owns
    it. Ask Claude which organization it's connected to, then reconnect choosing
    the right one.
  </Accordion>

  <Accordion title="A send is refused, saying it needs a preview">
    That's the safety gate doing its job. Ask Claude to preview the send again —
    if the plan changed after the last preview, it needs a fresh one before it
    can go out.
  </Accordion>

  <Accordion title="The browser sign-in never finishes">
    A corporate network or VPN may be blocking `revbridge.ai`. Removing and
    re-adding the connection also clears a stale sign-in. In Claude Code:

    ```bash theme={null}
    claude mcp remove revbridge
    claude mcp add --transport http revbridge https://mcp.revbridge.ai/mcp
    ```
  </Accordion>
</AccordionGroup>

## Next

<Card title="What you can ask" icon="comments" href="/assistant/what-you-can-ask">
  Example questions for analysis, audiences, and campaigns — plus the guided
  growth methods.
</Card>
