getGroups
Retrieve multiple Group entities by their IDs using a structured input on the 3D-MCP server, enabling streamlined interaction with 3D creative software through a unified API interface.
Instructions
Get multiple Groups by IDs
Input Schema
Name | Required | Description | Default |
---|---|---|---|
ids | Yes | Group identifiers |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"ids": {
"description": "Group identifiers",
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"ids"
],
"type": "object"
}