Skip to content
LangChain

ContextOS — Powered Exoskeleton for AI Coding for LangChain

io.github.yubinbin32-ops/contextos

Powered exoskeleton for AI coding: auto-governs context via MCP to cut 90%+ context waste.

client:LangChain transport:stdio runtime:oci

Install ContextOS — Powered Exoskeleton for AI Coding in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "contextos": {
            "transport": "stdio",
            "command": "docker",
            "args": ["run", "-i", "--rm", "ghcr.io/yubinbin32-ops/contextos:2.5.5"],
        }
})

tools = await client.get_tools()

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

ContextOS — Powered Exoskeleton for AI Coding in other clients