Skip to content
LangChain

i3deploy for LangChain

com.i3deploy/i3deploy

Deploy & release tracking with native MCP — ask Claude what's in production and cut the release.

client:LangChain transport:streamable-http

Install i3deploy in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

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

tools = await client.get_tools()

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

i3deploy in other clients