Skip to content
LangChain

egnyte remote for LangChain

io.github.ptyagiegnyte/egnyte-remote

Secure integration between AI tools and Egnyte content with search, analysis, and workflow tools.

client:LangChain transport:streamable-http

Install egnyte remote in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "egnyte-remote": {
            "transport": "streamable_http",
            "url": "https://ptyagiegnyte.github.io/egnyte-remote/mcp",
        }
})

tools = await client.get_tools()

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

egnyte remote in other clients