Skip to content
LangChain

GeoEDGE MCP for LangChain

io.github.geoedge-git/geoedge-mcp

Geospatial analysis: vector and raster GIS operations, cartographic maps, spatial data access

client:LangChain transport:stdio runtime:pypi

Install GeoEDGE MCP in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "geoedge-mcp": {
            "transport": "stdio",
            "command": "uvx",
            "args": ["geoedge-mcp"],
        }
})

tools = await client.get_tools()

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

GeoEDGE MCP in other clients