browser_open
Launch a new browser session for web automation tasks. Supports Chrome, Firefox, Edge, and Safari with configurable options including headless mode.
Instructions
Open a new browser session
Input Schema
Name | Required | Description | Default |
---|---|---|---|
browser | Yes | Browser to launch | |
options | No |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"browser": {
"description": "Browser to launch",
"enum": [
"chrome",
"firefox",
"edge",
"safari"
],
"type": "string"
},
"options": {
"additionalProperties": false,
"properties": {
"arguments": {
"description": "Additional browser arguments",
"items": {
"type": "string"
},
"type": "array"
},
"headless": {
"description": "Run browser in headless mode",
"type": "boolean"
}
},
"type": "object"
}
},
"required": [
"browser"
],
"type": "object"
}