What is the Cellarion MCP server?
Wine cellar manager: bottles, racks, drink windows, pairings and a shared wine registry.
How to install Cellarion
Copy-paste configuration for popular MCP clients.
transport: stdio
Config generated by PluginBench — verify against the source before use.Environment / auth
CELLARION_TOKENrequiredsecretPersonal API token from Settings -> API tokens (starts with cel_).
CELLARION_URLBase URL of your Cellarion server. Leave unset for the hosted app.
Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
"mcpServers": {
"cellarion": {
"command": "npx",
"args": [
"-y",
"cellarion-mcp"
],
"env": {
"CELLARION_TOKEN": "<YOUR_CELLARION_TOKEN>",
"CELLARION_URL": "<YOUR_CELLARION_URL>"
}
}
}
}Cursor
~/.cursor/mcp.json
{
"mcpServers": {
"cellarion": {
"command": "npx",
"args": [
"-y",
"cellarion-mcp"
],
"env": {
"CELLARION_TOKEN": "<YOUR_CELLARION_TOKEN>",
"CELLARION_URL": "<YOUR_CELLARION_URL>"
}
}
}
}Windsurf
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"cellarion": {
"command": "npx",
"args": [
"-y",
"cellarion-mcp"
],
"env": {
"CELLARION_TOKEN": "<YOUR_CELLARION_TOKEN>",
"CELLARION_URL": "<YOUR_CELLARION_URL>"
}
}
}
}VS Code
.vscode/mcp.json
{
"servers": {
"cellarion": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"cellarion-mcp"
],
"env": {
"CELLARION_TOKEN": "<YOUR_CELLARION_TOKEN>",
"CELLARION_URL": "<YOUR_CELLARION_URL>"
}
}
}
}Claude Code
claude mcp add cellarion --env CELLARION_TOKEN=<YOUR_CELLARION_TOKEN> --env CELLARION_URL=<YOUR_CELLARION_URL> -- npx -y cellarion-mcpRelated MCP servers
Cellarion Wine Registry
Active
Public wine registry and guides: search wines, grapes, regions, appellations. No account.
16
View repository →JavaScript
AGPL-3.0