Skip to main content

Connecting Claude to Multiple Enterpret Organizations

Configure Claude Desktop for multi-org Enterpret access add one mcp-remote entry per org in claude_desktop_config.json (unique name, port, API token).

V
Written by Vaishnavi Shrivastava
Updated today

Connect one Claude Desktop installation to multiple Enterpret organizations simultaneously. Each organization appears as a separate set of tools, queryable independently.

Claude's web interface (claude.ai) limits connections to one organization per MCP server URL. Claude Desktop's configuration file bypasses this — each connection gets a unique name and runs as a separate process.


Prerequisites

  • Claude Desktop installed (download)

  • Node.js 18+ installed (download)

  • An API token for each Enterpret organization — request from your Enterpret account team


Single Organization Setup

For one organization, the Claude Marketplace is the simplest path:

  1. Open Claude Desktop

  2. Go to Settings → Integrations

  3. Search for Enterpret

  4. Click Connect and authorize with your Enterpret account

  5. Select your organization when prompted


Multiple Organization Setup

Open the Claude Desktop configuration file in a text editor:

OS

Path

macOS

~/Library/Application Support/Claude/claude_desktop_config.json

Windows

%APPDATA%\\\\Claude\\\\claude_desktop_config.json

Add an entry under mcpServers for each organization. Each entry needs a unique name and a unique port number.

Paste this template into claude_desktop_config.json, then replace the entry names and tokens with your own:

Template

{
"mcpServers": {
"enterpret-org-alpha": {
"command": "npx",
"args": [
"mcp-remote",
"<https://wisdom-api.enterpret.com/server/mcp>",
"9696",
"--header",
"Authorization: Bearer YOUR_TOKEN_FOR_ORG_ALPHA"
]
},
"enterpret-org-beta": {
"command": "npx",
"args": [
"mcp-remote",
"<https://wisdom-api.enterpret.com/server/mcp>",
"9697",
"--header",
"Authorization: Bearer YOUR_TOKEN_FOR_ORG_BETA"
]
},
"enterpret-org-gamma": {
"command": "npx",
"args": [
"mcp-remote",
"<https://wisdom-api.enterpret.com/server/mcp>",
"9698",
"--header",
"Authorization: Bearer YOUR_TOKEN_FOR_ORG_GAMMA"
]
}
}
}

Replace the entry names (enterpret-org-alpha, etc.) with your organization names. Replace each YOUR_TOKEN_FOR_... with the corresponding API token.

Restart Claude Desktop after saving.

Port Assignment

Each mcp-remote instance uses a local port for its connection callback. Assign a unique port (the number after the server URL) to each entry. Any unused port above 1024 works — 9696, 9697, 9698 is a reasonable starting sequence.


Verifying the Connection

After restarting Claude Desktop, test each connection by asking:

"What organization am I connected to?"

Claude calls get_organization_details on the connection and returns the organization name, confirming the token is valid and the connection is live.


Querying Across Organizations

Claude sees all connected organizations' tools simultaneously. Specify which organization to query by referencing the connection name:

"Using enterpret-org-alpha, what are the top complaint themes this month?"

"Compare feature request volume between enterpret-org-beta and enterpret-org-gamma for the last quarter."


When to Use Each Setup Method

Method

Best for

Claude Marketplace (single org)

One Enterpret organization, simplest setup, automatic token refresh

mcp-remote (multi-org)

Multiple Enterpret organizations, cross-org analysis, Claude Desktop required


Limitations

Limitation

Implication

Claude Desktop only

Claude.ai (web) deduplicates by URL — multi-org requires the desktop app

Tripled tool surface

Each org registers its own set of tools, making the tool list longer in Claude's interface

Token management

Tokens are stored in the config file in plaintext — protect the file accordingly

Manual configuration

Adding or removing an org requires editing the config file and restarting Claude Desktop


Support

Did this answer your question?