Skip to content
LangChain

Cellarion for LangChain

app.cellarion/cellarion

Wine cellar manager: bottles, racks, drink windows, pairings and a shared wine registry.

client:LangChain transport:streamable-http runtime:npm

Install Cellarion in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "cellarion": {
            "transport": "streamable_http",
            "url": "https://cellarion.app/api/mcp",
        }
})

tools = await client.get_tools()

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

Cellarion in other clients