Skip to content
LangChain

Evolith Architecture Governance for LangChain

io.github.beyondnetcode/evolith

Executable architecture governance: an unevaluated rule is reported as a failure, never a pass.

client:LangChain transport:stdio runtime:npm

Install Evolith Architecture Governance in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

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

tools = await client.get_tools()

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

Evolith Architecture Governance in other clients