updateGroups
Update multiple groups simultaneously by modifying IDs, names, visibility, lock states, and metadata in the 3D-MCP server, streamlining group management in 3D creative workflows.
Instructions
Update multiple Groups in a single operation
Input Schema
Name | Required | Description | Default |
---|---|---|---|
items | Yes | Array of Groups to update with their IDs |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"items": {
"description": "Array of Groups to update with their IDs",
"items": {
"additionalProperties": false,
"properties": {
"ids": {
"description": "Group identifiers to update",
"items": {
"type": "string"
},
"type": "array"
},
"locked": {
"default": false,
"description": "Lock state of the group",
"type": "boolean"
},
"metadata": {
"additionalProperties": {},
"description": "Additional tool-specific metadata",
"type": "object"
},
"name": {
"description": "Display name",
"type": "string"
},
"objectIds": {
"description": "IDs of objects in this group",
"items": {
"type": "string"
},
"type": "array"
},
"parentId": {
"description": "ID of parent group",
"type": "string"
},
"visible": {
"default": true,
"description": "Visibility state of the group",
"type": "boolean"
}
},
"required": [
"ids"
],
"type": "object"
},
"type": "array"
}
},
"required": [
"items"
],
"type": "object"
}