Skip to content
LangChain

PipesHub for LangChain

io.github.pipeshub-ai/mcp

Permissioned search and cited answers over Slack, Drive, Gmail, Jira, and 50+ workplace sources.

client:LangChain transport:streamable-http runtime:npm

Install PipesHub in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

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

tools = await client.get_tools()

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

PipesHub in other clients