Skip to content
LangChain

CoS Codex Bridge for LangChain

io.github.av-labs-co/cos-codex-bridge

Operate Codex projects and tasks from a Chief of Staff with scoped access and durable receipts.

client:LangChain transport:stdio runtime:npm

Install CoS Codex Bridge in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "cos-codex-bridge": {
            "transport": "stdio",
            "command": "npx",
            "args": ["-y", "cos-codex-bridge"],
        }
})

tools = await client.get_tools()

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

CoS Codex Bridge in other clients