TD Create Operator (live)
td_create_operatorCreate a new operator inside a specified parent COMP in a live TouchDesigner instance, using an operator type and optional name, for dynamic network generation.
Instructions
Create a new operator inside a parent COMP in a running TouchDesigner instance (live control via the td_mcp bridge). Wraps the documented COMP.create(opType, name) call. op_type may be a create token like 'noiseTOP' or a display name like 'Noise TOP' (resolved via the operator map). Defaults to creating inside the '/td_mcp/sandbox' COMP.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | No | Optional name for the new operator. If omitted, TouchDesigner picks a default unique name based on the operator type. | |
| parent | No | Full path of the parent COMP to create the operator inside. Defaults to '/td_mcp/sandbox'. | |
| op_type | Yes | Operator type to create. Either a create token (e.g. 'noiseTOP', 'rectangleSOP', 'constantCHOP') or a display name (e.g. 'Noise TOP') that is resolved to a create token via the operator map. |