ObertObert

Setup

Connect your AI client to the Obert MCP server — Claude, Cursor, VS Code, Windsurf, and more.

Connect your AI client to the Obert MCP server. The remote server URL is:

https://mcp.obert.io/mcp

Authentication uses OAuth 2.1 — you'll be prompted to log in with your Obert account on first use.

Claude

Claude.ai (Team / Enterprise)

  1. Open Claude.ai and navigate to your workspace settings.
  2. Go to the Connectors page.
  3. Add the Obert MCP server URL: https://mcp.obert.io/mcp
  4. Authorize with your Obert account when prompted.

Claude Desktop (Free / Pro)

  1. Open Claude Desktop → SettingsDeveloperEdit Config.
  2. Add the following to your claude_desktop_config.json:
{
  "mcpServers": {
    "obert": {
      "command": "npx",
      "args": [
        "mcp-remote",
        "https://mcp.obert.io/mcp"
      ]
    }
  }
}
  1. Restart Claude Desktop.
  2. You'll be prompted to authenticate with your Obert account on first use.

Claude Code

Run this command in your terminal:

claude mcp add --transport http obert https://mcp.obert.io/mcp

You'll be prompted to authenticate with your Obert account on first use.

Cursor

  1. Open Cursor SettingsMCP.
  2. Click Add new MCP server.
  3. Set the URL to https://mcp.obert.io/mcp.
  4. Authenticate with your Obert account when prompted.

VS Code (Copilot)

  1. Open your VS Code settings JSON and add:
{
  "mcp": {
    "servers": {
      "obert": {
        "command": "npx",
        "args": [
          "mcp-remote",
          "https://mcp.obert.io/mcp"
        ]
      }
    }
  }
}
  1. Open the Command Palette (Cmd+Shift+P) and run MCP: List Servers.
  2. Select obert and click Start.
  3. Authenticate with your Obert account when prompted.

Windsurf

  1. Open Windsurf SettingsCascadeMCP.
  2. Click Add ServerAdd custom server.
  3. Add the following configuration:
{
  "mcpServers": {
    "obert": {
      "command": "npx",
      "args": [
        "mcp-remote",
        "https://mcp.obert.io/mcp"
      ]
    }
  }
}
  1. Authenticate with your Obert account when prompted.

Other clients

Any client that supports the Model Context Protocol works with Obert. Use the server URL https://mcp.obert.io/mcp and configure your client's MCP settings accordingly.

Troubleshooting

I'm getting an authentication error

Clear your cached MCP credentials and re-authenticate:

  • Claude Desktop / VS Code: Delete the ~/.mcp-auth directory and restart the client.
  • Claude Code: Run claude mcp remove obert then re-add the server.
  • Cursor / Windsurf: Remove and re-add the server in settings.

Are my actions scoped to my workspace?

Yes. All operations are scoped to the workspace you authenticated with. You can only access leads, campaigns, and signals within your own workspace.

On this page