Skip to content
LangChain

Geocoding & Weather for LangChain

org.memoryapi/geo

Geocoding, weather forecasts, and timezone lookups

client:LangChain transport:streamable-http tools:3

Install Geocoding & Weather in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "geo": {
            "transport": "streamable_http",
            "url": "https://geo.memoryapi.org/mcp",
        }
})

tools = await client.get_tools()

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

What LangChain can do once it is connected

Geocoding & Weather in other clients