create-page
Add a new browser page in a specified instance for automation, testing, or web scraping tasks using the MCP Fetch server with Puppeteer integration.
Instructions
Create a new page (tab) in a specified browser instance
Input Schema
Name | Required | Description | Default |
---|---|---|---|
browserId | Yes | The ID of the browser instance to create a page in |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"browserId": {
"description": "The ID of the browser instance to create a page in",
"type": "string"
}
},
"required": [
"browserId"
],
"type": "object"
}