Skip to content
LangChain

Ipma Pt for LangChain

io.github.pipeworx-io/ipma-pt

IPMA Portugal MCP — weather, UV, sea state, and earthquakes from the

client:LangChain transport:streamable-http

Install Ipma Pt in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "ipma-pt": {
            "transport": "streamable_http",
            "url": "https://gateway.pipeworx.io/ipma-pt/mcp",
        }
})

tools = await client.get_tools()

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

Ipma Pt in other clients