Skip to content
LangChain

Umlout for LangChain

io.github.dmkorj/umlout

Create and edit UML, flowchart, wireframe and sequence diagrams on an Umlout whiteboard.

client:LangChain transport:sse

Install Umlout in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "umlout": {
            "transport": "streamable_http",
            "url": "https://www.umlout.com/mcp/sse",
        }
})

tools = await client.get_tools()

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

Umlout in other clients