deleteLayers
Remove specific layers by their identifiers in 3D creative software using the 3D-MCP server. Streamline layer management by deleting multiple layers at once through a standardized API interface.
Instructions
Delete multiple Layers
Input Schema
Name | Required | Description | Default |
---|---|---|---|
ids | Yes | Layer identifiers to delete |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"ids": {
"description": "Layer identifiers to delete",
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"ids"
],
"type": "object"
}