Skip to content
LangChain

CloudQuell for LangChain

com.cloudquell/cloudquell-mcp-server

Ask about AWS, Azure, GCP, OpenAI, Anthropic and Snowflake costs, budgets, and anomalies.

client:LangChain transport:streamable-http

Install CloudQuell in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "cloudquell-mcp-server": {
            "transport": "streamable_http",
            "url": "https://mcp.cloudquell.com/mcp",
        }
})

tools = await client.get_tools()

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

CloudQuell in other clients