Skip to content
LangChain

quantaroute geocoder for LangChain

io.github.mapdevsaikat/quantaroute-geocoder

Geocode addresses, lookup administrative boundaries, and process DigiPin codes for India

client:LangChain transport:stdio runtime:npm

Install quantaroute geocoder in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "quantaroute-geocoder": {
            "transport": "stdio",
            "command": "npx",
            "args": ["-y", "@quantaroute/mcp-server"],
        }
})

tools = await client.get_tools()

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

quantaroute geocoder in other clients