Skip to content
LangChain

Umtri for LangChain

io.umtri/umtri

Give your AI agent a persistent map of your project's structure, dependencies, and bugs.

client:LangChain transport:streamable-http runtime:npm

Install Umtri in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "umtri": {
            "transport": "streamable_http",
            "url": "https://mcp.umtri.io",
        }
})

tools = await client.get_tools()

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

Umtri in other clients