bar-assistant-mcp
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@bar-assistant-mcpfind cocktails with gin and tonic"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Bar Assistant MCP Server
MCP (Model Context Protocol) server for Bar Assistant, a cocktail recipe and bar management application.
Features
This MCP server provides tools for:
Cocktails: Search, list, and get detailed cocktail information
Ingredients: Search and browse ingredients
Shelf Management: View and modify what's in your bar
Shopping List: Manage your shopping list
Collections: Browse cocktail collections
Reference Data: List tags, glasses, and methods
Related MCP server: mcp-mealie
Installation
Using pip
pip install bar-assistant-mcpFrom source
git clone https://github.com/yourusername/bar-assistant-mcp.git
cd bar-assistant-mcp
pip install -e .Configuration
The server requires the following environment variables:
Variable | Required | Description |
| Yes | Base URL of your Bar Assistant API (e.g., |
| Yes | API token from Bar Assistant |
| No | Bar ID (default: 1) |
Getting an API Token
Log into your Bar Assistant instance
Go to Profile → Personal Access Tokens
Create a new token with appropriate permissions
Copy the token (it's only shown once)
Configuration
Claude Code (Linux/WSL)
Create or edit .mcp.json in your home directory or project directory:
{
"mcpServers": {
"bar-assistant": {
"command": "/path/to/bar-assistant-mcp/.venv/bin/python",
"args": ["-m", "bar_assistant_mcp.server"],
"env": {
"BAR_ASSISTANT_URL": "https://your-bar-assistant-url.com",
"BAR_ASSISTANT_TOKEN": "your-api-token"
}
}
}
}Then restart Claude Code. The MCP server will be available when working in that directory.
Claude Desktop (Windows)
Edit %APPDATA%\Claude\claude_desktop_config.json (typically C:\Users\YourName\AppData\Roaming\Claude\claude_desktop_config.json):
{
"mcpServers": {
"bar-assistant": {
"command": "python",
"args": ["-m", "bar_assistant_mcp.server"],
"env": {
"BAR_ASSISTANT_URL": "https://your-bar-assistant-url.com",
"BAR_ASSISTANT_TOKEN": "your-api-token"
}
}
}
}Note for Windows: You'll need to install the package first:
pip install bar-assistant-mcpOr if running from source, use the full path to python in the venv.
Claude Desktop (macOS)
Edit ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"bar-assistant": {
"command": "/path/to/bar-assistant-mcp/.venv/bin/python",
"args": ["-m", "bar_assistant_mcp.server"],
"env": {
"BAR_ASSISTANT_URL": "https://your-bar-assistant-url.com",
"BAR_ASSISTANT_TOKEN": "your-api-token"
}
}
}
}Available Tools
Cocktails
Tool | Description |
| Search cocktails by name |
| Get detailed cocktail info |
| List cocktails with filters |
| Get cocktails you can make with shelf ingredients |
| Get favorite cocktails |
Ingredients
Tool | Description |
| Search ingredients by name |
| Get detailed ingredient info |
| List ingredients with filters |
| Get cocktails using an ingredient |
Shelf & Shopping
Tool | Description |
| Get shelf ingredients |
| Add ingredients to shelf |
| Remove ingredients from shelf |
| Get shopping list |
| Add to shopping list |
Collections & Reference
Tool | Description |
| List cocktail collections |
| Get collection details |
| List all tags |
| List glass types |
| List preparation methods |
| Get bar statistics |
Development
Setup
git clone https://github.com/yourusername/bar-assistant-mcp.git
cd bar-assistant-mcp
pip install -e ".[dev]"Testing
# Run the test script
cd mcpb
python test_mcp.py --list
# Call a specific tool
python test_mcp.py --call bar_search_cocktails '{"query": "margarita"}'Building MCPB Package
cd mcpb
python build_mcpb.pyLicense
MIT
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/talvola/bar-assistant-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server