select
Choose specific objects in 3D creative software by specifying their IDs and selection mode using the 3D-MCP server. Restrict selection by domain for precise object management.
Instructions
Select one or more objects
Input Schema
Name | Required | Description | Default |
---|---|---|---|
domain | No | Optional domain to restrict selection (e.g., 'mesh', 'animation') | |
ids | Yes | Object identifiers to select | |
mode | No | Selection mode operation | replace |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"domain": {
"description": "Optional domain to restrict selection (e.g., 'mesh', 'animation')",
"type": "string"
},
"ids": {
"description": "Object identifiers to select",
"items": {
"type": "string"
},
"type": "array"
},
"mode": {
"default": "replace",
"description": "Selection mode operation",
"enum": [
"replace",
"add",
"remove",
"toggle"
],
"type": "string"
}
},
"required": [
"ids"
],
"type": "object"
}