Skip to content
LangChain

geo for LangChain

co.thinair/geo

Geocoding, routing, isochrones, traffic, weather, and place search for AI agents. 19 MCP tools.

client:LangChain transport:streamable-http

Install geo in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

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

tools = await client.get_tools()

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

geo in other clients