Skip to content
LangChain

orchestro for LangChain

io.github.khaoss85/orchestro

Your AI Development Conductor - 60 MCP tools for intelligent task orchestration

client:LangChain transport:stdio runtime:npm

Install orchestro in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

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

tools = await client.get_tools()

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

orchestro in other clients