dutch-supermarkets-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., "@dutch-supermarkets-mcpOptimize my shopping list across Dutch supermarkets"
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.
Dutch Supermarkets MCP
TypeScript MCP server for Dutch supermarket and drugstore prices, promotions, shopping lists, meal planning, price alerts, routes, and budgets.
MCP tools
Tool | Purpose |
| Search supermarket and drugstore products |
| Compare the cheapest matching product per store |
| Split a list across the cheapest stores |
| List stores and product counts |
| List drugstores and active promotion counts |
| Search current promotions by store/category |
| Search recipes by text, category, diet, or duration |
| Generate a meal plan and priced shopping list |
| Show recent price ranges |
| Create a price or promotion alert |
| Check active alerts against current data |
| Save a shopping list |
| Re-price a saved list |
| List saved shopping lists |
| Recommend buying now or waiting |
| Find nearby stored locations |
| Group cheapest products into store stops |
| Set the current weekly budget |
| Price a list against a budget |
| Find promotion savings |
Tool names, input fields, descriptions, and responses are English. Dutch terms are retained only in synchronized source values and matching keywords required by Dutch retailer data sources.
Related MCP server: Swissgroceries MCP
Docker quick start
cp .env.example .env
# Replace DB_PASSWORD and HTTP_AUTH_TOKEN with random values.
docker compose up -d --buildThe stack contains:
db: PostgreSQL 16 withdocker/init.sqlmcp-server: authenticated Streamable HTTP athttp://localhost:8000/mcpscheduler: initial sync followed by 12-hour product/promotion/recipe syncs
The MCP and scheduler initialize the PostgreSQL schema themselves from the schema bundled in the image. A deployment consuming the published image does not need to clone this repository or mount docker/init.sql.
GitHub Container Registry deployment
Every push to main publishes two image tags through .github/workflows/publish-container.yml:
ghcr.io/thijserven/dutch-supermarkets-mcp:latest
ghcr.io/thijserven/dutch-supermarkets-mcp:<full-commit-sha>services:
dutch-supermarkets-db:
image: postgres:16-alpine
restart: unless-stopped
environment:
POSTGRES_DB: dutch_supermarkets
POSTGRES_USER: postgres
POSTGRES_PASSWORD: ${DUTCH_SUPERMARKETS_DB_PASSWORD}
volumes:
- dutch-supermarkets-data:/var/lib/postgresql/data
healthcheck:
test: ['CMD-SHELL', 'pg_isready -U postgres -d dutch_supermarkets']
interval: 5s
timeout: 5s
retries: 10
dutch-supermarkets-mcp:
image: ghcr.io/thijserven/dutch-supermarkets-mcp:<full-commit-sha>
restart: unless-stopped
depends_on:
dutch-supermarkets-db:
condition: service_healthy
environment: &dutch-supermarkets-env
DB_HOST: dutch-supermarkets-db
DB_PORT: 5432
DB_NAME: dutch_supermarkets
DB_USER: postgres
DB_PASSWORD: ${DUTCH_SUPERMARKETS_DB_PASSWORD}
ENABLE_HTTP_SERVER: 'true'
HTTP_HOST: '0.0.0.0'
HTTP_PORT: 8000
HTTP_AUTH_TOKEN: ${DUTCH_SUPERMARKETS_MCP_AUTH_TOKEN}
dutch-supermarkets-scheduler:
image: ghcr.io/thijserven/dutch-supermarkets-mcp:<full-commit-sha>
restart: unless-stopped
depends_on:
dutch-supermarkets-mcp:
condition: service_healthy
environment:
<<: *dutch-supermarkets-env
SYNC_INTERVAL_MS: 43200000
command: ['bin/scheduler.js']
healthcheck:
disable: true
volumes:
dutch-supermarkets-data:Check health:
curl http://localhost:8000/healthConnect an MCP client using either header:
Authorization: Bearer <HTTP_AUTH_TOKEN>
x-mcp-token: <HTTP_AUTH_TOKEN>Example Hermes MCP configuration:
mcp_servers:
dutch_supermarkets:
url: http://mcp-server:8000/mcp
headers:
Authorization: Bearer ${HTTP_AUTH_TOKEN}Local stdio setup
Requirements: Node.js 20+ and a reachable PostgreSQL database initialized with docker/init.sql.
npm ci
npm run build
DB_HOST=127.0.0.1 DB_PORT=5432 DB_PASSWORD=... node bin/mcp-server.jsENABLE_HTTP_SERVER defaults to false, so the CLI uses stdio. An MCP client configuration can invoke it directly:
{
"mcpServers": {
"dutch-supermarkets": {
"command": "node",
"args": ["/absolute/path/to/dutch-supermarkets-mcp/bin/mcp-server.js"],
"env": {
"DB_HOST": "127.0.0.1",
"DB_PORT": "5432",
"DB_NAME": "dutch_supermarkets",
"DB_USER": "postgres",
"DB_PASSWORD": "..."
}
}
}
}Configuration
Variable | Default | Description |
|
| PostgreSQL host |
|
| PostgreSQL port |
|
| Database name |
|
| Database user |
| empty | Database password |
|
| Use Streamable HTTP instead of stdio |
|
| HTTP bind host |
|
| HTTP bind port |
| unset | Optional HTTP bearer/custom-header token |
|
| Custom token header |
For exposed or shared HTTP deployments, always set HTTP_AUTH_TOKEN and place the server behind TLS. The Docker Compose stack requires the token.
Data synchronization
npm run sync -- prices
npm run sync -- promotions
npm run sync -- recipes
npm run sync -- allSources:
Product prices:
checkjebon.nl/data/supermarkets.jsonPromotions: public Folderz category pages
Recipes: bundled Dutch recipes plus TheMealDB
These are third-party sources and can change or rate-limit requests. The sync commands fail visibly on source/database errors; existing database data remains available to the MCP server.
Development
npm test
npm run lint
npm run typecheck
npm run buildThe test suite covers tool parity, Zod validation, parameterized SQL behavior, transport authentication, MCP protocol calls, geographic calculations, and promotion parsing.
License
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.
Related MCP Servers
- Flicense-qualityAmaintenanceAn MCP server for programmatically interacting with the Oda grocery shopping platform. It enables users to search for products, browse results, and manage their shopping cart contents through natural language.Last updated12
- AlicenseAqualityAmaintenanceA 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.Last updated713524AGPL 3.0
- AlicenseAqualityAmaintenanceAn MCP server for Nordic grocery shopping that finds deals across supermarkets in Denmark, Norway, Sweden, and Finland, plans weekly dinners around cheap ingredients, and generates shopping lists grouped by store.Last updated1818MIT

sscofficial
Alicense-qualityDmaintenanceMCP server for scraping product prices, offers, reviews, and details from Amazon, Google Shopping, Bol.com, and Coolblue via natural language commands, with spend-cap protections.Last updated231MIT
Related MCP Connectors
GibsonAI MCP server: manage your databases with natural language
MCP server for generating rough-draft project plans from natural-language prompts.
Personal assistant MCP server with search, execute, packages, jobs, secrets, and integrations.
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/thijserven/dutch-supermarkets-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server