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

# Connect an MCP client

> Step-by-step setup for Claude, ChatGPT, Cursor, Lovable, and other MCP clients.

Use the MCP URL `https://api.mentionpath.ai/mcp`. Most clients run OAuth on first connect — sign in to Mentionpath and approve the requested scopes.

## Claude (Desktop & web)

<Steps>
  <Step title="Open Connectors">
    In Claude, go to **Settings → Connectors** and choose **Add custom connector**.
  </Step>

  <Step title="Paste the MCP URL">
    Enter `https://api.mentionpath.ai/mcp` as the connector URL.
  </Step>

  <Step title="Authorize">
    Approve access in the browser when Claude opens the OAuth consent screen.
  </Step>
</Steps>

## ChatGPT

<Steps>
  <Step title="Enable connectors">
    In ChatGPT settings, enable connectors (Developer mode) and add a new MCP server.
  </Step>

  <Step title="Paste the MCP URL">
    Use `https://api.mentionpath.ai/mcp` as the server URL.
  </Step>

  <Step title="Authorize">
    Sign in to Mentionpath and approve the requested scopes.
  </Step>
</Steps>

## Cursor

Add Mentionpath to your MCP config, then enable it in Cursor settings:

```json theme={null}
{
  "mcpServers": {
    "mentionpath": {
      "url": "https://api.mentionpath.ai/mcp"
    }
  }
}
```

Open **Cursor → Settings → MCP**, toggle Mentionpath on, and complete OAuth in the browser.

## Lovable

Lovable connects to remote MCP servers as [chat connectors](https://docs.lovable.dev/integrations/mcp-servers). Custom servers are supported on all paid plans.

<Steps>
  <Step title="Open Chat connectors">
    In Lovable, go to **Connectors → Chat connectors** and click **New MCP server**.
  </Step>

  <Step title="Enter server details">
    Set a name (for example, **Mentionpath**) and paste `https://api.mentionpath.ai/mcp` as the server URL.
  </Step>

  <Step title="Authorize">
    Leave authentication on **OAuth** (default), click **Add & authorize**, then sign in to Mentionpath and approve the requested scopes.
  </Step>
</Steps>

## Claude Code (CLI)

```bash theme={null}
claude mcp add mentionpath --transport http --url https://api.mentionpath.ai/mcp
```

## VS Code

```json theme={null}
{
  "servers": {
    "mentionpath": {
      "type": "http",
      "url": "https://api.mentionpath.ai/mcp"
    }
  }
}
```

## Bearer token (advanced)

For clients that accept a static token instead of OAuth:

```bash theme={null}
npx mcp-remote https://api.mentionpath.ai/mcp \
  --header "Authorization: Bearer YOUR_TOKEN"
```

Create tokens under **Account → API** in the Mentionpath app.
