browserbase_stagehand_navigate
Directs a web browser to a specific URL for navigation. Ensures accurate browsing by using reliable URLs and integrates with Playwright Browserbase MCP Server for enhanced web control.
Instructions
Navigate to a URL in the browser. Only use this tool with URLs you're confident will work and stay up to date. Otherwise, use https://google.com as the starting point
Input Schema
Name | Required | Description | Default |
---|---|---|---|
url | Yes | The URL to navigate to |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"url": {
"description": "The URL to navigate to",
"type": "string"
}
},
"required": [
"url"
],
"type": "object"
}