Skip to content
LangChain

google shopping for LangChain

io.github.johnisanerd/google-shopping

Google Shopping products, prices, sellers, and deals as structured data via a hosted MCP server.

client:LangChain transport:streamable-http

Install google shopping in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "google-shopping": {
            "transport": "streamable_http",
            "url": "https://mcp.apify.com/?tools=johnvc/google-shopping-api-google-shopping-products-prices-deals",
        }
})

tools = await client.get_tools()

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

google shopping in other clients