Skip to content
LangChain

cloudwright for LangChain

io.github.xmpuspus/cloudwright

Cloud architecture and migration planning with costs, controls, evidence, and deployable IaC.

client:LangChain transport:stdio runtime:pypi

Install cloudwright in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "cloudwright": {
            "transport": "stdio",
            "command": "uvx",
            "args": ["cloudwright-ai-mcp"],
        }
})

tools = await client.get_tools()

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

cloudwright in other clients