init-browser
Launch and set up a browser instance with a specified URL for web automation tasks using Cloudflare Playwright MCP. Enables AI-driven navigation, interaction, and browser control efficiently.
Instructions
Initialize a browser with 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",
"format": "uri",
"type": "string"
}
},
"required": [
"url"
],
"type": "object"
}