Skip to content
LangChain

foehn for LangChain

io.github.kayhendriksen/foehn

Access Swiss meteorological open data from MeteoSwiss, powered by foehn

client:LangChain transport:stdio runtime:pypi

Install foehn in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

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

tools = await client.get_tools()

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

foehn in other clients