Skip to content
LangChain

orchex for LangChain

io.github.wundam/orchex

Autopilot AI orchestration — auto-plan, parallelize, self-heal, and route across 6 LLMs.

client:LangChain transport:stdio runtime:npm

Install orchex in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

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

tools = await client.get_tools()

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

orchex in other clients