Skip to content
LangChain

tdmcp — TouchDesigner MCP server for LangChain

io.github.pantani/tdmcp

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

client:LangChain transport:stdio runtime:npm

Install tdmcp — TouchDesigner MCP server in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "tdmcp": {
            "transport": "stdio",
            "command": "npx",
            "args": ["-y", "@dpantani/tdmcp"],
        }
})

tools = await client.get_tools()

get_tools() returns the server's tools as LangChain tools, ready for an agent. LangChain docs

tdmcp — TouchDesigner MCP server in other clients