Skip to content
LangChain

GuruHotel Manager for LangChain

com.guruhotel/manager

Manage your GuruHotel hotel: reservations, revenue, rates, KPIs, traffic and ARI updates (OAuth).

client:LangChain transport:streamable-http

Install GuruHotel Manager in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

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

tools = await client.get_tools()

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

GuruHotel Manager in other clients