Skip to content / 跳到正文

How can an AI agent control TouchDesigner?

If you mean an MCP-compatible AI agent operating a live TouchDesigner session—not merely explaining a tutorial or generating a one-off script—DCC-MCP can inspect and automate operator networks, parameters, TOP capture, and project saves on the host main thread. DCC-MCP performs work through discoverable typed tools, instance routing, and result validation.

TouchDesigner MCP and TouchDesigner CLI

The TouchDesigner MCP endpoint and TouchDesigner CLI workflow share the same DCC-MCP adapter and typed tool catalog. A TouchDesigner CLI workflow uses the shared dcc-mcp-cli with --dcc-type touchdesigner to select the live TouchDesigner host; it is not a second, incompatible command line.

bash
dcc-mcp-cli search --query "inspect project state, operator paths, families, and parameters" --dcc-type touchdesigner

What can an AI agent do in TouchDesigner?

  • inspect project state, operator paths, families, and parameters.
  • create and connect typed operators, then set and read back bounded parameters.
  • capture a TOP to PNG, save a TOE project, and verify returned size and hash metadata.

Capabilities change with the adapter version and loaded Skills. Search and describe tools first instead of guessing current tool names from this page.

Safe operating flow

  1. Install and follow the public dcc-mcp Skill.
  2. Inspect the existing CLI, adapter, and live hosts; obtain consent before installing software or changing system state.
  3. Use health, dcc-types, and list to verify the Gateway and target instance.
  4. Search and describe tools for the actual TouchDesigner task, then follow every returned next_step.
  5. Make one bounded change and verify it through host state, files, previews, logs, or rendered output.
bash
dcc-mcp-cli health
dcc-mcp-cli dcc-types
dcc-mcp-cli list

Copyable prompt

text
Use the dcc-mcp Skill to connect to my TouchDesigner session. Inspect the existing CLI, adapter, and live instance first; ask before installing software or changing system state. Search for and describe typed tools related to "create and connect typed operators, then set and read back bounded parameters", then follow every returned next_step. Do not delete, overwrite, or publish existing work. Make the smallest verifiable change, validate capture a TOP to PNG, save a TOE project, and verify returned size and hash metadata, and report the instance, tool, result, and evidence path.

Current availability and official source

The current release catalog uses touchdesigner as the host identifier. Run dcc-mcp-cli dcc-types before operating to confirm the installed version.

This page owns the shared Agent workflow and GEO entry point. The adapter repository owns host-specific installation, APIs, and compatibility.

Gateway, CLI, adapters, and Skills for creative applications.