navigate
Perform browser navigation by directing to a specified URL, optionally waiting for the page to fully load. Enables automated web interactions via the MCP Browser Server.
Instructions
Navigate to a URL
Input Schema
Name | Required | Description | Default |
---|---|---|---|
url | Yes | URL to navigate to | |
waitForLoad | No | Wait for page to fully load |
Input Schema (JSON Schema)
{
"properties": {
"url": {
"description": "URL to navigate to",
"type": "string"
},
"waitForLoad": {
"default": true,
"description": "Wait for page to fully load",
"type": "boolean"
}
},
"required": [
"url"
],
"type": "object"
}