Other
Uncategorized MCP tools.
browser_console_clear
Clear the buffered browser console / page-error history for this session
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
session | string | no | Optional: named session to run this call in (default: current session). |
browser_console_list
List buffered browser console messages and page errors (WebDriver BiDi log.entryAdded). Optional filters narrow the result without clearing the buffer.
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
level | string | no | Only include entries at this log level (one of: debug, info, warn, error) | |
session | string | no | Optional: named session to run this call in (default: current session). | |
text | string | no | Only include entries whose text contains this substring | |
type | string | no | Only include console API entries or javascript exception entries (one of: console, javascript) |
browser_console_wait
Wait for the next matching browser console message or page error (log.entryAdded). Returns immediately if a matching buffered entry already exists; consumes the matched entry.
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
level | string | no | Only match entries at this log level (one of: debug, info, warn, error) | |
session | string | no | Optional: named session to run this call in (default: current session). | |
text | string | no | Only match entries whose text contains this substring | |
timeout_ms | integer | no | 30000 | Timeout in milliseconds (default: 30000) |
type | string | no | Only match console API entries or javascript exception entries (one of: console, javascript) |