Vahada — Turkish drink prices
Real drink prices in Turkish bars: cheapest by district, live happy hours, venues near you.
Should I use this
Quality & Safety
Findings (1)
- LOWin cheapest_drinks
Based on automated analysis of tool definitions and protocol compliance.
Context Cost
This is the approximate number of tokens consumed each time the server's tools are loaded into a model's context. Higher counts reduce the attention available for other tasks.
Install
One-Click Install
Add this to your `claude_desktop_config.json` file:
{
"mcpServers": {
"vahada": {
"url": "https://getvahada.com/mcp"
}
}
}Remote endpoints
https://getvahada.com/mcpstreamable-httpWhat it can do
Tool inventory
Tools (6)
⚪cheapest_drinks(drink, area, limit)
Rank venues by the cheapest standing price for a drink category, optionally within one district or neighbourhood of a Turkish city. Use for questions like 'where is the cheapest beer in Kadıköy' or 'cheap cocktails in Beyoğlu'.
Input Schema
{
"type": "object",
"properties": {
"drink": {
"type": "string",
"enum": [
"beer",
"wine",
"cocktail"
],
"description": "Which drink category to rank by."
},
"area": {
"type": "string",
"description": "District or neighbourhood name, e.g. 'Kadıköy' or 'Beyoğlu'. Omit for all of Turkey."
},
"limit": {
"type": "integer",
"minimum": 1,
"maximum": 25,
"description": "How many venues to return (default 10)."
}
},
"required": [
"drink"
]
}⚪venue_prices(venue)
Every standing drink price for one venue, plus any happy hours with the days and times they run. Accepts a venue name or its Vahada slug.
Input Schema
{
"type": "object",
"properties": {
"venue": {
"type": "string",
"description": "Venue name or slug, e.g. 'Fıçı Pera'."
}
},
"required": [
"venue"
]
}🟢list_areas(city)
Which Turkish districts and neighbourhoods Vahada has enough priced venues to answer for, and how many venues each has. Call this first when unsure whether an area is covered.
Input Schema
{
"type": "object",
"properties": {
"city": {
"type": "string",
"description": "Filter to one city, e.g. 'Istanbul'."
}
}
}🟢happy_hours_now(area, limit)
Discounted drinks being served AT THIS MOMENT, with how long each has left. Turkey time. Use for 'is there a happy hour near me right now' or 'cheap drinks in Beyoğlu tonight'. Returns an empty list when nothing is running, which is a real answer rather than an error.
Input Schema
{
"type": "object",
"properties": {
"area": {
"type": "string",
"description": "District or neighbourhood, e.g. 'Kadıköy'. Omit for all of Turkey."
},
"limit": {
"type": "integer",
"minimum": 1,
"maximum": 25,
"description": "How many to return (default 10)."
}
}
}⚪venues_near(latitude, longitude, radius_km, limit)
Priced venues within a radius of a latitude/longitude, nearest first, with their cheapest drink in each category and the distance. Use when the user has shared a location or named a place you can geocode yourself.
Input Schema
{
"type": "object",
"properties": {
"latitude": {
"type": "number",
"minimum": -90,
"maximum": 90
},
"longitude": {
"type": "number",
"minimum": -180,
"maximum": 180
},
"radius_km": {
"type": "number",
"minimum": 0.1,
"maximum": 25,
"description": "Search radius in km (default 2)."
},
"limit": {
"type": "integer",
"minimum": 1,
"maximum": 25,
"description": "How many to return (default 10)."
}
},
"required": [
"latitude",
"longitude"
]
}⚪price_index
The published Vahada Bira Endeksi: median drink prices for Turkey and for the covered districts, as frozen in a monthly edition. Use for 'what does a beer cost in Turkey'.
Input Schema
{
"type": "object",
"properties": {}
}Community
Evidence