Skip to content
LangChain

outflow mcp for LangChain

io.github.laurells/outflow-mcp

MCP server exposing an Outflow workspace's live architecture graph as context for AI coding agents

client:LangChain transport:stdio runtime:npm

Install outflow mcp in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

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

tools = await client.get_tools()

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

outflow mcp in other clients