Skip to content
LangChain

touchdesigner mcp server for LangChain

io.github.8beeeaaat/touchdesigner-mcp-server

MCP server for TouchDesigner - Control and operate TouchDesigner projects through AI agents

client:LangChain transport:stdio runtime:npm

Install touchdesigner mcp server in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "touchdesigner-mcp-server": {
            "transport": "stdio",
            "command": "npx",
            "args": ["-y", "touchdesigner-mcp-server"],
        }
})

tools = await client.get_tools()

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

touchdesigner mcp server in other clients