Skip to content
LangChain

DaedalMap Volcanic Activity for LangChain

com.daedalmap/volcanoes

Global volcanic eruptions from the Smithsonian Global Volcanism Program: VEI, location, dates.

client:LangChain transport:streamable-http

Install DaedalMap Volcanic Activity in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

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

tools = await client.get_tools()

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

DaedalMap Volcanic Activity in other clients