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