Skip to content
LangChain

HasData Google Maps for LangChain

com.hasdata/google-maps

Google Maps places, reviews, contributor history, photos and posts as JSON. No Google Cloud.

client:LangChain transport:streamable-http runtime:npm

Install HasData Google Maps in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "google-maps": {
            "transport": "streamable_http",
            "url": "https://mcp.hasdata.com/mcp?apis=google_maps",
        }
})

tools = await client.get_tools()

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

HasData Google Maps in other clients