launch-browser
Initiate a new browser instance with customizable settings like window size and headless mode for web automation, testing, or scraping tasks using MCP Fetch.
Instructions
Launch a new browser instance and store it for later use
Input Schema
Name | Required | Description | Default |
---|---|---|---|
headless | No | Whether to run browser in headless mode. Defaults to false | |
height | No | Browser window height in pixels. Defaults to 720 | |
width | No | Browser window width in pixels. Defaults to 1280 |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"headless": {
"default": false,
"description": "Whether to run browser in headless mode. Defaults to false",
"type": "boolean"
},
"height": {
"default": 720,
"description": "Browser window height in pixels. Defaults to 720",
"type": "number"
},
"width": {
"default": 1280,
"description": "Browser window width in pixels. Defaults to 1280",
"type": "number"
}
},
"type": "object"
}