Skip to content
LangChain

Pathbound for LangChain

ai.pathbound/pathbound

Customer-context and ops layer for AI agents

client:LangChain transport:streamable-http

Install Pathbound in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

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

tools = await client.get_tools()

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

Pathbound in other clients