close-browser
Stop a specific browser instance in AdsPower by providing its unique user ID using the LocalAPI MCP Server. Simplify browser management and resource optimization.
Instructions
Close the browser
Input Schema
Name | Required | Description | Default |
---|---|---|---|
userId | Yes | The browser id of the browser to stop, it is required when you want to stop the browser |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"userId": {
"description": "The browser id of the browser to stop, it is required when you want to stop the browser",
"type": "string"
}
},
"required": [
"userId"
],
"type": "object"
}