TD Build Pattern (live)
td_build_patternCompile a linear workflow pattern into a TouchDesigner instance: create and wire operators in sequence from a pattern name. Specify a parent COMP or use the default sandbox.
Instructions
COMPILE a linear workflow pattern from data/patterns.json into a running TouchDesigner instance via the td_mcp bridge. It creates each operator in the pattern's workflow order and wires them as a STRAIGHT CHAIN (each op's output 0 into the next op's input 0), then lays out the network. LIMITATION: this only builds LINEAR SINGLE-INPUT chains — patterns.json carries no port/branch data, so multi-input nodes (Composite, Switch, Merge, Render, etc.) are NOT branch-wired; use td_build_template for branched networks. Builds into the sandbox COMP by default (/td_mcp/sandbox). STRICT: hard-errors if any operator name has no createType in the operator map. Requires the bridge (see td_status).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| parent | No | Parent COMP to build inside. Defaults to /td_mcp/sandbox. | |
| pattern | Yes | Pattern name exactly as it appears in data/patterns.json (e.g. 'Basic Video Input Chain', 'Image Filter Chain'). Use 'list' to see all available pattern names. |