create-group
Automates browser group creation by defining a group name and optional remark, facilitating organized profile management within AdsPower LocalAPI MCP Server.
Instructions
Create a browser group
Input Schema
Name | Required | Description | Default |
---|---|---|---|
groupName | Yes | The name of the group to create | |
remark | No | The remark of the group |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"groupName": {
"description": "The name of the group to create",
"type": "string"
},
"remark": {
"description": "The remark of the group",
"type": "string"
}
},
"required": [
"groupName"
],
"type": "object"
}