td-mcp
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@td-mcpbuild a feedback loop using noise and a level TOP"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
td-mcp
A lean, token-efficient MCP server for driving TouchDesigner from AI assistants like Claude.
Build whole node networks in one call, search CHOP channels by glob, inspect operators compactly, and screenshot any TOP so the assistant can see what it built. Battle-tested by building audio-reactive and hand-tracking projects end to end.
Why another TouchDesigner MCP?
Compared to a conventional per-node tool surface, td-mcp is designed to minimize round trips and context tokens:
td_build- create a whole network (operators + parameters + expressions + wires) in ONE call.td_find_channels- glob-search every CHOP in the project (e.g.*pinch*) instead of dumping node trees.td_get- returns only NON-default parameters.td_screenshot- saves any TOP to PNG for visual verification.td_ensure_cook- one call installs a per-frame force-cook (fixes the classic "GLSL/feedback network renders once then freezes" gotcha).Wrong parameter names return close-match suggestions instead of bare errors.
Operator paths self-locate by name if the exact path moved.
One-line tool descriptions - tool schemas are loaded into every session, so short docs are cheaper.
Related MCP server: touchdesigner-mcp
Architecture
Claude / MCP client
| stdio (MCP)
server.py (Python, FastMCP)
| HTTP POST 127.0.0.1:9980/api (JSON)
TouchDesigner: /project1/td_mcp
|- webserver (Web Server DAT, port 9980)
|- callbacks (Text DAT - HTTP handler)
|- dispatcher (Text DAT - 16 command handlers, TD Python API)The bridge is installed by script (no .tox drag-drop): re-runnable, self-healing, and the DAT contents always match the repo sources.
Setup
Requirements: uv, TouchDesigner (any recent build; tested on 2025.3x macOS).
Clone and install:
git clone https://github.com/YOURNAME/td-mcp && cd td-mcp && uv syncInstall the bridge inside TouchDesigner - open the textport (Alt+T / Option+T) and run (adjust the path to your clone):
exec(open('/path/to/td-mcp/td/install_bridge.py').read())Verify from a terminal:
curl -s http://127.0.0.1:9980/api -d '{"cmd":"status"}'Register the server with your MCP client. For Claude Code, in
.mcp.json:{ "mcpServers": { "td": { "command": "uv", "args": ["--directory", "/path/to/td-mcp", "run", "python", "server.py"] } } }Restart the client and ask it to
td_status.
Tools
Tool | Purpose |
| TD + bridge status |
| whole network in one call (ops, params, exprs, wires) |
| single operator create / delete |
| set params; |
| wire two operators |
| compact inspection |
| glob-search CHOP channels project-wide |
| live channel values |
| per-frame force-cook (anti-freeze) |
| save a TOP to PNG |
| save project / load a .tox |
| all erroring operators under a path |
| escape hatch: run Python inside TD |
Field notes (learned the hard way)
TD's Python
open()defaults to ASCII - the bridge sources are pure ASCII.ParModeis not on thetdmodule inside DAT modules; the dispatcher usestype(par.mode).EXPRESSIONinstead (version-proof).Feedback TOPs need an actual input connection, not just a Target TOP.
COMP-to-COMP wiring requires matching connector families (a CHOP output cannot feed a DAT input) - check
outputConnectors[i].outOPtypes.After building feedback networks, pulse
resetpulseonce to flush any pre-expression frames the loop may have latched.
Credits
Bridge-over-Web-Server-DAT architecture inspired by 8beeeaaat/touchdesigner-mcp.
License
MIT
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseBqualityAmaintenanceA Model Context Protocol server that enables AI agents to control and operate TouchDesigner projects through creation, modification, and querying of nodes and project structures.142,019472MIT
- AlicenseAqualityFmaintenanceAn MCP server for TouchDesigner that lets you control TouchDesigner with Claude5MIT
- Alicense-qualityDmaintenanceHigh-performance MCP server that enables AI assistants to control TouchDesigner live via WebSocket, providing 37 tools for nodes, parameters, scripting, and more.4MIT
- AlicenseAqualityDmaintenanceMCP server for controlling TouchDesigner from AI coding agents like Claude Code and Codex CLI, enabling operator manipulation, parameter control, and screenshot capture.12MIT
Related MCP Connectors
MCP server for Producer/Riffusion AI music generation
A comprehensive Model Context Protocol (MCP) server that enables AI assistants to interact with yo…
Self-hosted MCP gateway: turn any API, database or MCP server into AI connectors — no code.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/vedant1317/touchDesigner-MCP'
If you have feedback or need assistance with the MCP directory API, please join our Discord server