Skip to content
LangChain

mdflow — Context OS for AI Coding Agents for LangChain

io.github.yubinbin32-ops/mdflow

Context OS for AI coding agents: task-scoped AST context, verified mutation, and rollback.

client:LangChain transport:stdio runtime:oci

Install mdflow — Context OS for AI Coding Agents in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

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

tools = await client.get_tools()

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

mdflow — Context OS for AI Coding Agents in other clients