browser_session_start
Start a new browser automation session, creating a tab group for subsequent operations. Optionally spawn a fresh window, bring it to foreground, or run silently in background.
Instructions
Start a new browser session. Creates a Chrome tab group with an initial tab; all subsequent operations are scoped to that group. Pass newWindow=true to spawn a fresh Chrome window so window-resize won't disturb the user's other tabs. By default the new window is brought to OS foreground once (so the user sees automation has started) — subsequent browser_navigate calls do NOT steal focus (default changed in 0.4.1). Pass bringToFront:false to start fully in the background. Idempotent: ends a previous session first.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| title | No | AI Session | |
| color | No | blue | |
| url | No | about:blank | |
| newWindow | No | ||
| width | No | ||
| height | No | ||
| left | No | ||
| top | No | ||
| state | No | ||
| bringToFront | No | On session start, raise the new window to OS foreground once. The tab is always made active within its window regardless (prevents Chrome throttling). Default true so users see automation has started; pass false for fully-silent background start. | |
| visuals | No | Visual feedback layer (animated cursor + target ring + HUD). Defaults: enabled with cursor + hud; slowMo:0. |