Create TouchDesigner node
create_td_nodeCreate a bare operator node inside a parent COMP. Validates the operator type against the knowledge base and warns on unknown types, returning the node and warnings.
Instructions
Create a single bare operator (node) inside a parent COMP — nothing is wired or laid out. Validates the operator type against the knowledge base and warns (without blocking) on unknown types. Returns {node, warnings[]} for the created node. This is the atomic primitive: for a complete wired+arranged network prefer the higher-level Layer-1 create_* tools (e.g. create_audio_reactive, create_feedback_network).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| parent_path | No | Parent COMP path to create the node inside. | /project1 |
| type | Yes | Operator type string, e.g. 'noiseTOP', 'feedbackTOP', 'nullTOP', 'constantCHOP'. | |
| name | No | Optional node name (auto-generated if omitted). | |
| parameters | No | Optional initial parameter overrides as key→value pairs. |