Skip to main content
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)

1

Open Connectors

In Claude, go to Settings → Connectors and choose Add custom connector.
2

Paste the MCP URL

Enter https://api.mentionpath.ai/mcp as the connector URL.
3

Authorize

Approve access in the browser when Claude opens the OAuth consent screen.

ChatGPT

1

Enable connectors

In ChatGPT settings, enable connectors (Developer mode) and add a new MCP server.
2

Paste the MCP URL

Use https://api.mentionpath.ai/mcp as the server URL.
3

Authorize

Sign in to Mentionpath and approve the requested scopes.

Cursor

Add Mentionpath to your MCP config, then enable it in Cursor settings:
{
  "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. Custom servers are supported on all paid plans.
1

Open Chat connectors

In Lovable, go to Connectors → Chat connectors and click New MCP server.
2

Enter server details

Set a name (for example, Mentionpath) and paste https://api.mentionpath.ai/mcp as the server URL.
3

Authorize

Leave authentication on OAuth (default), click Add & authorize, then sign in to Mentionpath and approve the requested scopes.

Claude Code (CLI)

claude mcp add mentionpath --transport http --url https://api.mentionpath.ai/mcp

VS Code

{
  "servers": {
    "mentionpath": {
      "type": "http",
      "url": "https://api.mentionpath.ai/mcp"
    }
  }
}

Bearer token (advanced)

For clients that accept a static token instead of OAuth:
npx mcp-remote https://api.mentionpath.ai/mcp \
  --header "Authorization: Bearer YOUR_TOKEN"
Create tokens under Account → API in the Mentionpath app.