Skip to content
LangChain

The Remote Suite (Dev) for LangChain

io.github.cognitivecoreai/the-remote-suite-dev

Dev environment for The Remote Suite MCP. Appreciate teammates and run workspace ops.

client:LangChain transport:streamable-http

Install The Remote Suite (Dev) in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "the-remote-suite-dev": {
            "transport": "streamable_http",
            "url": "https://dev.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 (Dev) in other clients