performGroupOperations
Execute group operations like add, remove, move, or nest on 3D objects within the 3D-MCP server, enabling efficient management of object groups for creative workflows.
Instructions
Perform operations on object groups
Input Schema
Name | Required | Description | Default |
---|---|---|---|
items | Yes | Group operations to perform | |
operation | Yes | Operation to perform |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"items": {
"description": "Group operations to perform",
"items": {
"additionalProperties": false,
"properties": {
"groupId": {
"description": "Group identifier",
"type": "string"
},
"objectIds": {
"description": "Object IDs for add/remove operations",
"items": {
"type": "string"
},
"type": "array"
},
"targetGroupId": {
"description": "Target group for move/nest operations",
"type": "string"
}
},
"required": [
"groupId"
],
"type": "object"
},
"type": "array"
},
"operation": {
"description": "Operation to perform",
"enum": [
"add",
"remove",
"move",
"nest"
],
"type": "string"
}
},
"required": [
"operation",
"items"
],
"type": "object"
}