close-page
Close a specific web page by its ID and remove it from the active pages list in MCP Fetch, optimizing browser automation and resource management.
Instructions
Close a specific page and remove it from the active pages list
Input Schema
Name | Required | Description | Default |
---|---|---|---|
pageId | Yes | The ID of the page to close |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"pageId": {
"description": "The ID of the page to close",
"type": "string"
}
},
"required": [
"pageId"
],
"type": "object"
}