browser_navigate
Navigate to a URL in a specific browser tab. Supports absolute URLs or relative paths with a base URL.
Instructions
Navigate to a URL in the specified tab. Relative paths like /foo require base_url or PLAYWRIGHT_MCP_BASE_URL.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| url | Yes | Absolute URL, or path starting with / if base_url / env base is set. | |
| tab_id | No | Stable tab id from browser_tabs list; preferred when multiple agents run in parallel. Mutually exclusive with tab_index. | |
| timeout | No | Navigation timeout in ms (default: 30000). | |
| base_url | No | Optional origin for relative URLs (e.g. http://127.0.0.1:3000). Overrides PLAYWRIGHT_MCP_BASE_URL for this call. | |
| tab_index | No | Tab index from browser_tabs list. If omitted, uses the lowest-index tab. Mutually exclusive with tab_id. | |
| wait_until | No | When navigation is considered done (default: domcontentloaded). |