Skip to content
LangChain

CloudScale-Sim for LangChain

io.github.evozim/cloudscale-sim

Cloud infrastructure auto-scaling load test simulator.

client:LangChain transport:sse

Install CloudScale-Sim in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "cloudscale-sim": {
            "transport": "streamable_http",
            "url": "https://cloudscale-sim-mcp.vercel.app/api/mcp",
        }
})

tools = await client.get_tools()

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

CloudScale-Sim in other clients