Skip to content
LangChain

Nephyr Weather for LangChain

io.github.clm-studios/nephyr-weather

GFS ensemble weather signals for prediction market edge detection across 12 cities

client:LangChain transport:stdio runtime:pypi

Install Nephyr Weather in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

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

tools = await client.get_tools()

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

Nephyr Weather in other clients