browser_tab_group
Create, list, and delete tab groups to isolate browser sessions for multiple agents sharing one browser. Always create a group before opening tabs to ensure each agent controls its own tabs.
Instructions
Manage tab groups for session isolation. Multiple users/agents sharing one browser MUST create a tab group first, then pass the groupId to browser_tabs and other tools. This ensures each session only sees and controls its own tabs.
Actions:
'create': Create a new tab group. Returns a groupId to use with all other browser tools.
'list': List all tab groups with tab counts.
'delete': Delete a tab group and optionally close its tabs.
⚡ IMPORTANT: Always create a tab group before opening tabs with browser_tabs.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| action | Yes | Tab group action to perform | |
| name | No | Human-readable name for the group (for 'create' action) | |
| color | No | Visual color for the group (for 'create' action) | |
| groupId | No | Group name (for 'delete' action) | |
| closeTabs | No | Whether to close all tabs in the group when deleting (default: true) |