loading…
Search for a command to run...
loading…
A Model Context Protocol server for real-time Swiss grocery shopping that searches and compares products across 8 major Swiss retailers (Migros, Coop, Aldi, Den
A Model Context Protocol server for real-time Swiss grocery shopping that searches and compares products across 8 major Swiss retailers (Migros, Coop, Aldi, Denner, Lidl, Farmy, Volgshop, Otto’s), normalizes per-unit prices, surfaces promotions, computes optimal multi-store shopping plans, and works with any MCP-compatible client without API keys or accounts.
Real-time Swiss grocery shopping over the Model Context Protocol. Search products, compare prices across Migros, Coop, Aldi, Denner, Lidl, Farmy, Volgshop, and Otto's, see weekly promotions, and plan multi-store shopping trips. Works with any MCP-compatible client (Claude Desktop, Claude Code, Cursor, Cline, Continue, VS Code MCP extensions, custom clients).
Disclaimer
This is a personal fun project. It is not affiliated with, endorsed by, or sponsored by Migros, Coop, Aldi, Denner, Lidl, Farmy, Volg, Otto's, or any other retailer. It uses publicly accessible mobile-app endpoints to make Swiss grocery shopping a bit smarter for end users.
If you represent any of these stores and have concerns (about API usage, branding, scraping rate, or anything else), please reach out to the maintainer through GitHub and we will work it out. No need to escalate.
API stability: the chain APIs used here are unofficial and can change at any time. The maintainer is not responsible for failures caused by upstream changes; please open an issue with the response sample so the affected adapter can be updated.
PRs welcome. New chains, better matchers, smarter strategies, bug fixes, doc improvements; all encouraged. See CONTRIBUTING.md.
No accounts, no tokens, no API keys required. The Denner adapter self-registers an anonymous client on first use; everything else uses public endpoints.
Download swissgroceries-mcp.mcpb from the Releases page and:
claude mcp add swissgroceries -- npx -y @nicktcode/swissgroceries-mcp
Most MCP-compatible clients accept the same JSON server entry. Add it to your client's MCP config file (paths vary, see your client's docs):
{
"mcpServers": {
"swissgroceries": {
"command": "npx",
"args": ["-y", "@nicktcode/swissgroceries-mcp"]
}
}
}
Common config paths:
~/Library/Application Support/Claude/claude_desktop_config.json (macOS), %APPDATA%\Claude\claude_desktop_config.json (Windows)..cursor/mcp.json in the project, or ~/.cursor/mcp.json globally.npx -y @nicktcode/swissgroceries-mcp directly.Price comparison
Shopping planning
Promotions and deals
Stores and stock
| Tool | What it does |
|---|---|
find_stores |
Find grocery stores near a location, filtered by chain and radius. |
search_products |
Cross-chain product search with normalised price, unit price, size, and tags. |
get_product |
Full product details for a chain plus product ID pair. |
get_promotions |
Current promotional deals, filterable by chain, keyword, store, or expiry. |
find_stock |
Stores of a chain that have a given product in stock. |
plan_shopping |
Plan a multi-store trip for a shopping list near a location. |
health_check |
Probe each registered chain adapter and report status, latency, and capabilities. |
Each tool exposes rich JSON Schema with field-level descriptions, so the LLM knows when and how to call it.
| Prompt | What it does |
|---|---|
weekly_deals_digest |
Summarise this week's best grocery deals across the configured chains. Optional category, chains, and location filters. |
compare_basket_across_chains |
Compare a shopping basket across all chains and recommend single-store vs split-cart strategies. |
cheapest_recipe_ingredients |
From an ingredient list (or recipe URL) find the cheapest place to buy each item and produce a consolidated shopping plan. |
Prompts are surfaced as one-click templates in MCP-aware clients (Claude Desktop, Cursor, Cline). They produce structured user messages that drive the right tool calls — useful as a starting point and as discovery of what the server can do.
| URI | Content |
|---|---|
swissgroceries://chains |
JSON list of registered chain adapters and their capabilities (productSearch, productDetail, storeSearch, promotions, perStoreStock, perStorePricing). |
| Chain | Product search | Promotions | Per-store stock | Auth |
|---|---|---|---|---|
| Migros | Full catalog | Yes | Yes | Guest token (auto, rotated on expiry) |
| Coop | Full catalog (coopathome) | Yes | Yes (geo) | None |
| Aldi | Full catalog | Yes | No | None |
| Denner | Full catalog | Yes | No | Anonymous self-auth (signup + signin, rotated) |
| Lidl | Weekly leaflet only | Yes | No | None |
| Farmy | Full catalog (organic delivery) | Yes (strikeout-price filter) | No (delivery-only) | None |
| Volgshop | Full catalog | Yes (on_sale filter) |
No (delivery-only) | None |
| Otto's | Grocery-adjacent (food, drugstore, baby) | Yes (priceLabels facet) | Yes (per-store stockLevel) | None |
| Env var | Default | Effect |
|---|---|---|
DENNER_JWT |
(unset) | Optional pre-supplied Denner Bearer JWT. Without it, the adapter self-registers anonymously on first use and rotates the token automatically. |
LIDL_DEFAULT_STORE |
CH0149 |
Default Lidl store ID used when no storeIds are passed. |
SWISSGROCERIES_USER_AGENT_COOP |
(default iOS Safari UA) | Override the User-Agent for Coop calls if DataDome ever blocks the default. |
SWISSGROCERIES_LOG_LEVEL |
info |
silent, info, or debug. |
SWISSGROCERIES_DISABLE_CACHE |
(unset) | Set to 1 to bypass the in-memory HTTP cache (useful for debugging). |
Each grocery chain is wrapped in an independent adapter (src/adapters/<chain>/) that handles authentication, HTTP calls, and raw-to-normalised mapping. Adapters all produce the same NormalizedProduct, NormalizedStore, and NormalizedPromotion shapes (defined in src/adapters/types.ts), so the rest of the system never has to know which chain it is talking to.
The HTTP utility (src/util/http.ts) underpins every adapter except Migros (which delegates to the migros-api-wrapper library): in-memory response caching with a 5-minute TTL, retry with exponential backoff (3 attempts, 250 ms base), per-host rate limiting (~10 requests per second), and a per-host circuit breaker that opens after 5 consecutive failures and resets after 60 seconds.
The shopping planner (src/services/planner.ts) fans out store and product searches in parallel across all active adapters, then feeds results into a strategy solver (src/services/strategy.ts) that supports three modes:
single_store: minimise the number of stops.split_cart: cheapest split across chains, with a configurable per-stop penalty.absolute_cheapest: cheapest split, ignoring stop count.Cross-chain comparisons are kept fair by a category-text canonicality filter (src/services/matcher.ts, isCanonical). When at least one chain returns a product whose category text matches the query, results from chains that only returned tangential products (for example, Apfelschorle when searching for "apfel") are dropped from the comparison matrix for that item.
MCP client (any LLM)
│
│ MCP tool call
▼
src/index.ts ── buildRegistry() ────────────────────────────────────────┐
│ │
│ routes to tool handler │
▼ ▼
src/tools/ src/adapters/
find_stores.ts ──► geocoding ──► adapter.searchStores migros/
search_products.ts ──────────────► adapter.searchProducts coop/
get_product.ts ──────────────► adapter.getProduct aldi/
get_promotions.ts ──────────────► adapter.getPromotions denner/ (auto-auth)
find_stock.ts ──────────────► adapter.findStoresWithStock lidl/
plan_shopping.ts ──► geocoding ──► planner ──► strategy solver
│
NormalizedProduct
NormalizedStore
NormalizedPromotion
node --version # requires Node.js >=20
git clone https://github.com/nicktcode/swissgroceries-mcp
cd swissgroceries-mcp
npm install
npm run build
To also build the .mcpb bundle locally:
npx tsx scripts/build-mcpb.ts
Coop "DataDome challenge" error
You hit Coop's bot protection. Set SWISSGROCERIES_USER_AGENT_COOP to a freshly captured iOS Safari User-Agent string and try again.
Denner "auth_expired" error
Rare, since the adapter rotates its token automatically. If it persists, unset any custom DENNER_JWT and let the adapter re-bootstrap from scratch.
Lidl returns 0 results
Lidl only indexes products from the current weekly campaign leaflet. If your search term is not in this week's campaigns, you will get 0 results. This is expected.
ZIP unknown error
The static lookup table covers all 3,190 official Swiss postcodes. If yours is missing, pass { lat, lng } directly or open an issue with the missing PLZ.
Migros stores nowhere near my location
The Migros store-search API caps at ~10 results per query. The adapter passes a city hint derived from your ZIP. If you call the adapter directly without ZIP-based geocoding, pass cityHint explicitly.
npm test # full test suite, no network calls
RUN_LIVE=1 npm test # also runs live smoke tests against real chain APIs
npm run dev # tsx watcher for local iteration
SWISSGROCERIES_DISABLE_CACHE=1 RUN_LIVE=1 npm test # cache off, useful for debugging
SWISSGROCERIES_LOG_LEVEL=debug npm run dev # verbose logging
The test suite uses Vitest. Fixture JSON files live under tests/fixtures/<chain>/. Capture scripts in scripts/ show how to refresh them.
See CONTRIBUTING.md for the full guide. Quick version:
src/adapters/<chain>/{client,tags,normalize,index}.ts following the existing patterns. Use src/adapters/aldi/ as the simplest reference.NormalizedProduct, NormalizedStore, and NormalizedPromotion.src/index.ts's buildRegistry().tests/adapters/.Dual-licensed:
[email protected].Versions ≤ 0.7.4 were released under MIT and remain MIT-licensed in their existing published form. Starting with 0.7.5 the license is AGPL-3.0-only.
Добавь это в claude_desktop_config.json и перезапусти Claude Desktop.
{
"mcpServers": {
"swissgroceries-mcp": {
"command": "npx",
"args": []
}
}
}