batch
Run multiple browser tool calls in one request, in parallel or serial mode, to efficiently manage several tabs simultaneously.
Instructions
Run multiple tool calls in one request — parallel (default) or serial. Each op is { tool, args } and goes through the same policy gate, rate limit, and error handling as a direct call. In parallel mode, tab-scoped ops MUST pass an explicit tabId (the active-tab default is unsafe under concurrency). Use to drive several tabs at once (e.g. open tabs, then batch get_text across them). Cannot be nested.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| ops | Yes | Operations to run; each is a tool name + its args. | |
| mode | No | Default "parallel". | |
| stopOnError | No | Serial mode only: stop after the first failing op (the rest are skipped). | |
| maxConcurrency | No | Parallel mode: max ops in flight at once (default 6). |