wolt-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., "@wolt-mcpfind vegan restaurants near me open now"
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.
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.
Related MCP server: OrderFood MCP
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 |
| float |
| |
| float |
| |
| int (m) |
| 200–20000 |
| str? |
| Substring match against name + tags |
| bool |
| |
| float? |
| 0–10 scale |
| int |
| |
| str |
|
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 |
| str | — | From |
| str |
| |
| bool |
|
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 |
|
| Tallinn center |
|
| |
|
| Sent as |
|
| 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 clientContributions 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.
Available Tools
2 toolslist_nearbyA
List Wolt venues near a location. Defaults to Tallinn center. Returns compact dicts with slug, rating, ETA, online status, tags. Use query to substring-match name/tags. Prices are not included here — call get_menu for a specific slug.
| Name | Required | Description | Default |
|---|---|---|---|
| lat | No | Latitude | |
| lon | No | Longitude | |
| radius | No | Search radius in meters | |
| query | No | Case-insensitive substring match against venue name and tags | |
| only_open | No | Filter to currently-online venues | |
| min_rating | No | Minimum rating (0–10 scale) | |
| max_results | No | Max venues to return | |
| language | No | Wolt response language, e.g. 'en', 'et' | en |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Despite no annotations, the description discloses what the tool returns (compact dicts with slug, rating, ETA, online status, tags), what it does not return (prices), and the default behavior (Tallinn center). It does not cover all edge cases but is transparent enough for safe invocation.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two dense sentences pack purpose, defaults, return format, query usage, and sibling guidance with zero wasted words. Every sentence earns its place.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given 8 optional parameters, no required params, and no output schema, the description effectively explains the return format, filtering options, and when to use the sibling tool. It is complete enough for an agent to select and invoke correctly.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100%, so the input schema already describes each parameter well. The description adds marginal value by reaffirming the default location and the substring-match behavior of `query`, but does not provide significant new insight beyond the schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the verb 'List' and resource 'Wolt venues near a location', specifies the default location (Tallinn center), and distinguishes itself from the sibling tool 'get_menu' by noting that prices are not included here.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
It provides explicit guidance on when to use this tool versus the alternative: 'Prices are not included here — call get_menu for a specific slug.' It also explains how to use the `query` parameter for substring matching, and mentions defaults and filtering options.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
2 tool updates
v0.1.0- First observed
get_menu - First observed
list_nearby
TDQS
The two tools have completely distinct purposes: list_nearby finds venues, get_menu retrieves menu details for a specific venue. No overlap.
Both tools follow a verb_noun pattern ('get_menu', 'list_nearby'), though 'list_nearby' uses an adjective which is a minor deviation.
Only 2 tools is on the low end for a food delivery service, but it may be acceptable for a simple discovery-focused server. However, it feels thin for broader use cases.
The server covers basic venue discovery and menu retrieval, but lacks essential operations like searching items, user authentication, order management, or venue details beyond menus.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Connectors
- mcpOAuthcom.zomato
An MCP server that exposes functionalities to use Zomato's services.
MCP server that lets AI assistants use all OneSchema features exposed via the public API.
MCP server for AI agents to plan, verify, and deploy Cloudflare-native apps.
Hosted MCP for e-commerce: live product catalog, stock, and pricing for AI agents.
Related MCP Servers
- FlicenseNot gradedqualityDmaintenanceA proof-of-concept Model Context Protocol server that enables LLM applications to interact with Uber Eats, allowing AI agents to browse and order food through natural language.236-
- AlicenseNot gradedqualityCmaintenanceAn MCP server that enables AI agents to discover restaurants and place food delivery orders on Uber Eats and Thuisbezorgd (Just Eat Takeaway). It provides tools for restaurant discovery and order management through normalized platform APIs.22MIT
- AlicenseNot gradedqualityCmaintenanceHosted MCP server to manage a restaurant menu from AI agents - 39 tools over the DuckHub API (menu, categories, modifiers, prices, images, translations, promotions, and orders).MIT
- FlicenseNot gradedqualityCmaintenanceMCP server exposing restaurant tools including search by cuisine, price, rating, and open status, restaurant details, user preferences stored in Neon Postgres, and RAG knowledge search covering 50 mock restaurants across Scottsdale and Phoenix.-
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- 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/fogside/wolt-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server