wolt-mcp
A thin MCP server that exposes Wolt's public consumer endpoints to AI agents, enabling discovery of nearby venues and fetching their menus with live prices and deal signals.
README
wolt-mcp
A thin Model Context Protocol server that exposes Wolt's public consumer endpoints to AI agents. Point it anywhere Wolt operates — the default coordinates are Tallinn, Estonia, but you can override per-call or via env vars.
Two tools, no magic:
list_nearby— venues near a lat/lon, filtered by substring, rating, open/closed status.get_menu— full menu for a venue by slug, with prices, 30-day lows, and category structure.
It's read-only on purpose. Wolt's ordering API is gated behind merchant credentials; this server intentionally doesn't try to place orders.
Who this is for
You want an AI assistant (Claude Code, Cursor, Continue, Zed, or your own Agent SDK app) that can:
- Discover restaurants by cuisine, rating, or open status in your city.
- Read full menus with live prices into its context window.
- Watch favorite venues for deals — discount categories like
ERIPAKKUMISED(Estonian),SPECIAL OFFERS, orKUUPAKKUMINE(monthly offer), pluslowest_price(the 30-day low used for EU compliance display). - Draft weekly meal plans by composing items across a curated shortlist of venues.
Geographic coverage
Wolt's consumer-api.wolt.com is global; this server has no country hardcoding. Change WOLT_DEFAULT_LAT / WOLT_DEFAULT_LON (or pass lat/lon per call) to work anywhere Wolt delivers — Finland, Germany, Czechia, Estonia, Israel, Greece, Japan, and more. Verified live against Tallinn (59.4370, 24.7536); other regions should work with the same endpoints.
Install
git clone https://github.com/fogside/wolt-mcp
cd wolt-mcp
python3 -m venv .venv
.venv/bin/pip install -e .
Then register it with any MCP-capable client. For Claude Code, drop this at the project root:
{
"mcpServers": {
"wolt": {
"command": "./.venv/bin/wolt-mcp",
"args": [],
"env": {
"WOLT_DEFAULT_LAT": "59.4370",
"WOLT_DEFAULT_LON": "24.7536",
"WOLT_LANGUAGE": "en"
}
}
}
}
For Claude Desktop, add to ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or the equivalent on Linux/Windows:
{
"mcpServers": {
"wolt": {
"command": "/absolute/path/to/wolt-mcp/.venv/bin/wolt-mcp",
"env": { "WOLT_DEFAULT_LAT": "59.4370", "WOLT_DEFAULT_LON": "24.7536" }
}
}
}
Any other MCP client that supports stdio transport works the same way — run wolt-mcp as the command.
Tools
list_nearby
| Param | Type | Default | Notes |
|---|---|---|---|
lat |
float | $WOLT_DEFAULT_LAT |
|
lon |
float | $WOLT_DEFAULT_LON |
|
radius |
int (m) | 3000 |
200–20000 |
query |
str? | None |
Substring match against name + tags |
only_open |
bool | False |
|
min_rating |
float? | None |
0–10 scale |
max_results |
int | 30 |
|
language |
str | $WOLT_LANGUAGE or en |
Returns a list of dicts: name, slug, id, online, rating, rating_volume, eta_minutes, price_range, tags, short_description, address.
get_menu
| Param | Type | Default | Notes |
|---|---|---|---|
slug |
str | — | From list_nearby, e.g. vapiano-foorum |
language |
str | en |
|
include_disabled |
bool | False |
Returns { slug, assortment_id, primary_language, selected_language, available_languages, categories: [{ id, name, slug, description, items: [...] }], uncategorised_items, item_count }. Each item has id, name, description, price, original_price, lowest_price, enabled, tags.
Prices are integers in minor units. 2390 = €23.90. Currency is not on items — infer from venue country.
Environment variables
| Var | Default | Purpose |
|---|---|---|
WOLT_DEFAULT_LAT |
59.4370 |
Tallinn center |
WOLT_DEFAULT_LON |
24.7536 |
|
WOLT_LANGUAGE |
en |
Sent as Accept-Language |
WOLT_MCP_LOG |
WARNING |
Python logging level |
Example conversations
"Find the top five sushi places near me that are open right now." →
list_nearby(query="sushi", only_open=True, min_rating=9, max_results=5)"Pull Vapiano Foorum's menu and tell me what's vegetarian." →
get_menu(slug="vapiano-foorum")then the LLM filters by description."Compare prices for pad thai between these three Thai venues." → one
list_nearby+ threeget_menucalls."Summarise current deals at my favorite café." →
get_menu— surface items in categories named likeERIPAKKUMISED/SPECIAL OFFERS/KUUPAKKUMINE, or with⭐in the name.
Detecting deals — an important gotcha
Wolt venues in practice use category membership as their deal signal much more often than original_price. A typical Estonian cafe will have a category named ERIPAKKUMISED ("special offers") or KUUPAKKUMINE ("monthly offer") containing the discounted items, while original_price on those items stays null.
When prompting your agent, don't rely on a price-diff — ask it to inspect category names and item names (⭐ prefixes are common) as the first-class signal. lowest_price is useful for longer-range price-tracking: it's the 30-day low that Wolt surfaces for EU price-transparency compliance.
Non-goals and limitations
- No ordering, cart, or checkout. Wolt's consumer cart/order flow requires authenticated user sessions + isn't in this MCP's scope. For commerce, use Wolt's merchant API (partner credentials required).
- No user-account actions. Can't read your order history or favorites.
- Language. The
assortmentendpoint often returns the venue's primary language (e.g. Estonian) even whenenis requested — most venues don't publish auto-translated content. You'll see the actual selected language in the response'sselected_languagefield. - Rate limits. Wolt returns 429s under aggressive use. For personal use this doesn't matter; for anything heavier, add client-side pacing.
Terms of service
This project hits Wolt's public, unauthenticated consumer endpoints — the same ones wolt.com's web app calls. Automated access at scale is contrary to Wolt's Terms of Service. Use this for personal agent assistance, experimentation, or research. Don't build a scraper at scale with it.
Credits and sources of inspiration
- jonzarecki/wolt-sdk — the first published Wolt MCP. Inspired this project, though the published implementation was Israel-focused and had server↔client method mismatches at the time of this writing, which pushed us to rebuild rather than fork. MIT-licensed.
- OfiliPatrick/wolt-restaurant-api — early reverse-engineering of the consumer endpoints.
- Tomer Chaim's writeup and OzTamir's gist — how to discover undocumented web-app endpoints through DevTools.
- Built on FastMCP (v3.x) by the
jlowin/fastmcpproject. - The broader Model Context Protocol spec from Anthropic.
Development
.venv/bin/pip install -e ".[dev]" # once dev extras are defined
.venv/bin/wolt-mcp # runs the server on stdio — connect a client
Contributions welcome — especially venue-specific deal-detection heuristics for cities outside Estonia, or a venue_dynamic(slug) tool if you can find a working endpoint.
License
MIT.
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。