Skip to content
LangChain

DaedalMap Disaster and Geospatial Data for LangChain

com.daedalmap/county-map

Geospatial MCP server for earthquake, tsunami, volcano, disaster, and FX data queries.

client:LangChain transport:streamable-http tools:13

Install DaedalMap Disaster and Geospatial Data in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "county-map": {
            "transport": "streamable_http",
            "url": "https://app.daedalmap.com/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

DaedalMap Disaster and Geospatial Data in other clients