Skip to content
VS Code

tdmcp — TouchDesigner MCP server for VS Code

io.github.pantani/tdmcp

Build real visual systems in TouchDesigner from plain language with Claude, Cursor or Codex.

client:VS Code transport:stdio runtime:npm

Install tdmcp — TouchDesigner MCP server in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "tdmcp-tool-profile",
      "description": "TDMCP_TOOL_PROFILE",
      "password": true
    },
    {
      "type": "promptString",
      "id": "tdmcp-raw-python",
      "description": "TDMCP_RAW_PYTHON",
      "password": true
    }
  ],
  "servers": {
    "tdmcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@dpantani/tdmcp"
      ],
      "env": {
        "TDMCP_TOOL_PROFILE": "${input:tdmcp-tool-profile}",
        "TDMCP_RAW_PYTHON": "${input:tdmcp-raw-python}"
      }
    }
  }
}

VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs

tdmcp — TouchDesigner MCP server in other clients