browser_navigate
Directs a browser to load a specified URL using Playwright MCP, enabling structured interaction with web pages for automation tasks.
Instructions
Navigate to a URL
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"
}