Workspace Scoping
Connecting to multiple workspaces
Each MCP connection is scoped to a single workspace — the one you selected during the OAuth login flow. To work across multiple workspaces simultaneously, add Catio as a separate named server for each workspace.
Example: two workspaces in Claude Code
claude mcp add --transport http catio-prod https://mcp.catio.tech/mcp
claude mcp add --transport http catio-staging https://mcp.catio.tech/mcpThen authenticate each one separately via /mcp → select the server → Login. Each login flow lets you pick a different workspace.
Example: two workspaces in Cursor
{
"mcpServers": {
"catio-prod": {
"url": "https://mcp.catio.tech/mcp"
},
"catio-staging": {
"url": "https://mcp.catio.tech/mcp"
}
}
}Each server entry authenticates and maintains its own session independently, so each can be logged into a different workspace.
Switching workspaces
To change which workspace a server is connected to, clear its authentication and log in again:
- Claude Code / OpenCode:
/mcp→ select the server → Clear authentication → Login - Other clients: remove and re-add the server entry, then re-authenticate
Updated 13 days ago