Skip to content
LangChain

DaedalMap Geography Tools (loc_id) for LangChain

com.daedalmap/geocoding

Resolve coordinates and geographic identifiers to loc_id, crosswalks, and bounded shapes.

client:LangChain transport:streamable-http

Install DaedalMap Geography Tools (loc_id) in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "geocoding": {
            "transport": "streamable_http",
            "url": "https://app.daedalmap.com/mcp/geography",
        }
})

tools = await client.get_tools()

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

DaedalMap Geography Tools (loc_id) in other clients