Skip to content
LangChain

DocDeploy for LangChain

io.docdeploy.www/mcp-server

Document hosting and encrypted agent memory with multi-tenant persistence.

client:LangChain transport:streamable-http

Install DocDeploy in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

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

tools = await client.get_tools()

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

DocDeploy in other clients