delete-browser
Remove specific browser profiles by user IDs using the MCP Server, enabling efficient management of AdsPower LocalAPI browser instances for streamlined operations.
Instructions
Delete the browser
Input Schema
Name | Required | Description | Default |
---|---|---|---|
userIds | Yes | The user ids of the browsers to delete, it is required when you want to delete the browser |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"userIds": {
"description": "The user ids of the browsers to delete, it is required when you want to delete the browser",
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"userIds"
],
"type": "object"
}