Skip to content
LangChain

Untangle for LangChain

bio.untangle/untangle

Bioprocess design: generate purification routes, simulate fermentation and separations, run TEA.

client:LangChain transport:streamable-http

Install Untangle in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

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

tools = await client.get_tools()

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

Untangle in other clients