Skip to content
LangChain

motion mcp public for LangChain

io.github.dishui/motion-mcp-public

Remote MCP server bridging Motion to Claude

client:LangChain transport:stdio runtime:npm

Install motion mcp public in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "motion-mcp-public": {
            "transport": "stdio",
            "command": "npx",
            "args": ["-y", "@dishui/motion-mcp"],
        }
})

tools = await client.get_tools()

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

motion mcp public in other clients