Skip to content
LangChain

Weather & Climate Intelligence MCP for LangChain

io.github.foundrynet/weather-intel-mcp

Weather data, forecast API, climate data, historical weather, alerts, agricultural & travel weather.

client:LangChain transport:streamable-http

Install Weather & Climate Intelligence MCP in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "weather-intel-mcp": {
            "transport": "streamable_http",
            "url": "https://weather-intel-mcp-production.up.railway.app/mcp",
        }
})

tools = await client.get_tools()

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

Weather & Climate Intelligence MCP in other clients