Skip to content
LangChain

google hotels for LangChain

io.github.johnisanerd/google-hotels

Google Hotels prices, ratings, reviews, and photos via an Apify Actor, hosted MCP.

client:LangChain transport:streamable-http

Install google hotels in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "google-hotels": {
            "transport": "streamable_http",
            "url": "https://mcp.apify.com/?tools=johnvc/google-hotels-search-scraper",
        }
})

tools = await client.get_tools()

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

google hotels in other clients