Touchdesigner MCP Server

MCP server for TouchDesigner

Local serverstdioPython

What is the Touchdesigner MCP MCP server?

MCP server for TouchDesigner. That is what the touchdesigner mcp mcp server brings to an AI assistant: the same capability, reachable through the Model Context Protocol rather than a separate app or dashboard.

The short version

This is an implementation of an MCP (Model Context Protocol) server for TouchDesigner. Its goal is to enable AI agents to control and operate TouchDesigner projects.

TouchDesigner MCP acts as a bridge between AI models and the TouchDesigner WebServer DAT, enabling AI agents to:

The tools it exposes

The server publishes 14 tools. What each one is for:

  • create_td_node — Creates a new node
  • delete_td_node — Deletes an existing node
  • describe_td_tools — Generates a manifest of the available TouchDesigner tools
  • exec_node_method — Calls a Python method on a node
  • execute_python_script — Executes an arbitrary Python script in TouchDesigner
  • get_td_class_details — Gets details of a TouchDesigner Python class or module
  • get_td_classes — Gets a list of TouchDesigner Python classes
  • get_td_info — Gets information about the TouchDesigner server environment
  • get_td_module_help — Gets Python help() documentation for TouchDesigner modules/classes
  • get_td_node_errors — Checks for errors on a specified node and its children
  • get_td_node_parameters — Gets the parameters of a specific node
  • get_td_nodes — Gets nodes under a parent path, with optional filtering

Getting it running

Setup follows the usual MCP pattern — install or clone the server, register it in your client's configuration file, restart the client.

How it compares

Among the knowledge and memory options, the useful question is rarely "what can it do" but "what does it cost you to run" — permissions, credentials, and how much of your context its toolset consumes. Touchdesigner MCP's toolset — create_td_node, delete_td_node, describe_td_tools and 11 more — is a fair guide to whether it matches your workflow. It is maintained by 8beeeaaat; worth a glance at recent repository activity before you build anything load-bearing on it.

This entry was verified against Touchdesigner MCP's own documentation before publication; SyncDev keeps the directory reviewed rather than auto-generated.

Things to watch

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • With 14 tools registered it takes up a noticeable share of the context window; turn it off in projects that never touch Touchdesigner MCP.
  • Keep per-call confirmation enabled while you learn its behaviour; it is the cheapest safeguard you have.

Available tools

ToolWhat it does
create_td_nodeCreates a new node.
delete_td_nodeDeletes an existing node.
describe_td_toolsGenerates a manifest of the available TouchDesigner tools.
exec_node_methodCalls a Python method on a node.
execute_python_scriptExecutes an arbitrary Python script in TouchDesigner.
get_td_class_detailsGets details of a TouchDesigner Python class or module.
get_td_classesGets a list of TouchDesigner Python classes.
get_td_infoGets information about the TouchDesigner server environment.
get_td_module_helpGets Python help() documentation for TouchDesigner modules/classes.
get_td_node_errorsChecks for errors on a specified node and its children.
get_td_node_parametersGets the parameters of a specific node.
get_td_nodesGets nodes under a parent path, with optional filtering.
get_top_imageCaptures the current output of a TOP node as an image.
update_td_node_parametersUpdates the parameters of a specific node.

Example prompts to try

  • Use Touchdesigner MCP to create td node.
  • Use Touchdesigner MCP to delete td node.
  • Use Touchdesigner MCP to describe td tools.

Frequently asked questions

It connects Touchdesigner MCP to MCP-compatible AI assistants such as Claude and Cursor, exposing 14 tools (create_td_node, delete_td_node, describe_td_tools, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Touchdesigner MCP directly.