← SuperOffice MCP Server

Connect with Claude Desktop

Two ways to add the SuperOffice MCP Server to Claude Desktop.

Option 1 — Install via MCPB bundle

  1. Download the bundle from the SuperOffice MCP Server landing page
  2. Open the .mcpb file (double-click, drag and drop into Claude Desktop, or via SettingsExtensionsAdvanced settingsInstall Extension)
  3. Click Install
  4. Log in with SuperOffice credentials
  5. Confirm the SuperOffice connector is enabled
SuperOffice MCP Server landing page with download bundle link Claude Desktop — Install extension dialog Claude Desktop — Installation confirmation Claude Desktop — SuperOffice connector enabled

Switching tenant or signing in as a different user

Your SuperOffice tenant (customer database) is tied to the account you sign in with. To switch tenant — or sign in as a different user — you must sign in again. Restarting Claude Desktop or reinstalling the extension does not switch tenant; the saved login is reused automatically.

  1. Fully quit Claude Desktop.
  2. Delete the saved login:
    # macOS / Linux
    rm -rf ~/.mcp-auth
    
    # Windows (PowerShell)
    Remove-Item -Recurse -Force "$env:USERPROFILE\.mcp-auth"
  3. Relaunch Claude Desktop.
  4. A browser window will open and prompt you to authorize access. Allow access, sign in, and select the tenant you want to use.
  5. Verify that you have successfully switched tenants by running a SuperOffice query such as “Who am I in SuperOffice?”.
Deleting ~/.mcp-auth also clears saved logins for any other MCP servers that use mcp-remote. They will prompt you to sign in again the next time you use them.

Option 2 — Connect with mcp-remote

  1. Open SettingsDeveloperEdit Config Claude Desktop — Edit Config button
  2. Add the following to your config:
    {
      "mcpServers": {
        "superoffice": {
          "command": "npx",
          "args": ["-y", "mcp-remote", "https://mcp.superoffice.com/mcp"]
        }
      }
    }
  3. Save and restart Claude Desktop
  4. On first use, a browser window will open for SuperOffice login

Non-admin and NVM users

Install Node.js via nvm:

curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.40.1/install.sh | bash

Then:

nvm install --lts

Use the full path to npx in your configuration instead of just npx.