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

# Connect Claude or ChatGPT

> Add Sapt as an MCP connector and start asking it about your workspace.

Sapt is organized around Projects: the workspaces where your team and AI agents
do client work. Most teams start by connecting Sapt to Claude or ChatGPT.

## 1. Copy the MCP URL

The same URL works for both:

```
https://mcp.sapt.ai/mcp
```

## 2. Connect Claude

Claude works through custom connectors.

<Steps>
  <Step title="Open the connector settings">
    Go to [Claude connectors](https://claude.ai/customize/connectors?modal=add-custom-connector)
    and click **Add custom connector**.
  </Step>

  <Step title="Name it">
    Call it `Sapt`.
  </Step>

  <Step title="Paste the URL">
    `https://mcp.sapt.ai/mcp`
  </Step>

  <Step title="Connect">
    Click **Connect** and sign in with your Sapt account.
  </Step>

  <Step title="Allow the tools">
    Optional but recommended: set the Sapt tools to **Always allow**.
  </Step>
</Steps>

Try asking Claude: *"What's my brand voice?"*

## 3. Connect ChatGPT

ChatGPT connects through Apps with Developer mode.

<Steps>
  <Step title="Open connector settings">
    Go to [ChatGPT connector settings](https://chatgpt.com/#settings/Connectors/Advanced),
    then **Settings → Apps → Advanced settings**.
  </Step>

  <Step title="Turn on Developer mode">
    Then click **Create app**.
  </Step>

  <Step title="Name it and paste the URL">
    Call it `Sapt`, and paste `https://mcp.sapt.ai/mcp`.
  </Step>

  <Step title="Set authentication to OAuth">
    Check the disclaimer and click **Create**.
  </Step>

  <Step title="Try it">
    Start a chat in Developer mode and ask: *"What's my brand voice?"*
  </Step>
</Steps>

## 4. Or build with REST

If you would rather drive Sapt from your own code, create an API key and call
the REST API directly:

```bash theme={null}
curl https://api.sapt.ai/projects/$PROJECT_ID/agents \
  -H "Authorization: ApiKey sapt_your_api_key"
```

See [Authentication](/docs/mintlify/guides/authentication) for how to create the
key, and the [Quickstart](/docs/mintlify/guides/quickstart) to publish your first
post.

## What next

<CardGroup cols={2}>
  <Card title="MCP overview" href="/docs/mintlify/mcp/overview">
    How the Sapt connector works, and which tools each server exposes.
  </Card>

  <Card title="Authentication" href="/docs/mintlify/guides/authentication">
    API keys, OAuth2 clients, and connector OAuth.
  </Card>
</CardGroup>
