Skip to content
LangChain

The Remote Suite for LangChain

io.github.cognitivecoreai/the-remote-suite

Appreciate teammates, celebrate milestones, and run workspace ops from MCP clients via OAuth.

client:LangChain transport:streamable-http

Install The Remote Suite in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "the-remote-suite": {
            "transport": "streamable_http",
            "url": "https://theremotesuite.com/api/mcp",
        }
})

tools = await client.get_tools()

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

The Remote Suite in other clients