Run several actions at once
browser_batchExecute multiple browser actions in a single call to reduce latency and round-trips, with options to stop on error or include specific step outputs.
Instructions
Run several Blinkwire actions in ONE call. This is the biggest latency and context win available: you pay one round-trip instead of N. Each step is {tool, args}. Tool names may be bare ("click") or prefixed (e.g. with your server prefix). By default only failures (and the last step) have their full output inlined — use include to see more.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| steps | Yes | Steps to run in order, each {tool: string, args: object} | |
| settle | No | Milliseconds to wait for the page to settle after all steps | |
| include | No | 1-based step indices whose full output to inline | |
| stopOnError | No | Stop at the first failure (default true) |