getLayers
Retrieve multiple 3D model layers by their identifiers using the standardized API of 3D-MCP, enabling efficient data access and integration with creative software workflows.
Instructions
Get multiple Layers by IDs
Input Schema
Name | Required | Description | Default |
---|---|---|---|
ids | Yes | Layer identifiers |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"ids": {
"description": "Layer identifiers",
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"ids"
],
"type": "object"
}