Skip to content
LangChain

google ai overview for LangChain

io.github.johnisanerd/google-ai-overview

Google AI Overview answers and cited sources via the Apify Google AI Overview API, hosted MCP.

client:LangChain transport:streamable-http

Install google ai overview in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "google-ai-overview": {
            "transport": "streamable_http",
            "url": "https://mcp.apify.com/?tools=johnvc/Google-AI-Overview-API",
        }
})

tools = await client.get_tools()

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

google ai overview in other clients