Skip to content
LangChain

DOS — the trust substrate for agent fleets for LangChain

io.github.anthony-chaudhary/dos-kernel

Verify what agents actually shipped, arbitrate file collisions, refuse with structured reasons.

client:LangChain transport:stdio runtime:pypi

Install DOS — the trust substrate for agent fleets in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "dos-kernel": {
            "transport": "stdio",
            "command": "uvx",
            "args": ["dos-kernel"],
        }
})

tools = await client.get_tools()

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

DOS — the trust substrate for agent fleets in other clients