TD Connect (live)
td_connectConnect a source operator's output to a destination operator's input in a running TouchDesigner instance using the td_mcp bridge.
Instructions
Connect one operator's output to another operator's input in a running TouchDesigner instance (live control via the td_mcp bridge). Wraps the documented Connector.connect() call (op(to).inputConnectors[toIn].connect(op(from).outputConnectors[fromOut])).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| to_path | Yes | Full path of the destination operator receiving the input, e.g. '/td_mcp/sandbox/blur1'. | |
| to_input | No | Input connector index on the destination operator (0-based). Defaults to 0. | |
| from_path | Yes | Full path of the source operator providing the output, e.g. '/td_mcp/sandbox/noise1'. | |
| from_output | No | Output connector index on the source operator (0-based). Defaults to 0. |