patch_folders_folder
Manage browser profile organization by adding or removing profiles from folders using GoLogin MCP. Specify folder name, profile IDs, and action (add/remove) for streamlined profile management.
Instructions
Add or remove profiles from folder
Input Schema
Name | Required | Description | Default |
---|---|---|---|
action | Yes | Action to perform with the profiles. | |
name | Yes | Name of the folder. | |
profiles | Yes | List of profile IDs that you want to add or remove from the folder. |
Input Schema (JSON Schema)
{
"properties": {
"action": {
"description": "Action to perform with the profiles.",
"enum": [
"add",
"remove"
],
"type": "string"
},
"name": {
"description": "Name of the folder.",
"type": "string"
},
"profiles": {
"description": "List of profile IDs that you want to add or remove from the folder.",
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"name",
"profiles",
"action"
],
"type": "object"
}