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-mcpcreate a new constant CHOP at the root"
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
MCP (Model Context Protocol) server for controlling TouchDesigner from AI coding agents like Claude Code and Codex CLI.
Setup
1. TouchDesigner Side
Install the callbacks file into your TD project:
cd /path/to/your-td-project uvx td-mcp installCreate a WebServer DAT in TouchDesigner
Set Port to
9980Set the WebServer DAT's callbacks File parameter to
td_mcp_callbacks.pyToggle Active ON
2. Agent Side
Claude Code (.mcp.json)
{
"mcpServers": {
"touchdesigner": {
"command": "uvx",
"args": ["td-mcp"],
"env": {
"TD_HOST": "127.0.0.1",
"TD_PORT": "9980"
}
}
}
}Codex CLI
codex mcp add touchdesigner \
--env TD_HOST=127.0.0.1 \
--env TD_PORT=9980 \
-- uvx td-mcpRelated MCP server: touchdesigner-mcp
Tools
Tool | Description |
| Get project root path (call first) |
| Create an operator |
| Delete an operator |
| List child operators |
| Get operator info |
| Set parameters (batch) |
| Get parameters (with schema discovery) |
| Connect operators |
| Disconnect operators |
| Find empty space in network editor |
| Execute Python code in TD |
| Capture TOP screenshot |
Environment Variables
Variable | Default | Description |
|
| TouchDesigner host |
|
| WebServer DAT port |
|
| Request timeout (seconds) |
Architecture
AI Agent → MCP Server (stdio) → HTTP Client → TouchDesigner WebServer DATSecurity Note
td_execute allows arbitrary Python execution inside TouchDesigner. Use only in trusted local environments.
License
MIT
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
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/tai5863/td-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server