Skip to content
LangChain

Runtime Cloud for LangChain

com.withruntime/runtime

Linux microVM sandboxes for AI agents: run commands, files, processes, pause and wake.

client:LangChain transport:streamable-http runtime:npm

Install Runtime Cloud in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "runtime": {
            "transport": "streamable_http",
            "url": "https://api.withruntime.com/mcp",
        }
})

tools = await client.get_tools()

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

Runtime Cloud in other clients