vilgain-mcp
Click on "Deploy 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., "@vilgain-mcpFind a protein bar with no sucralose and at least 25% protein"
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.
Vilgain MCP Server
Let your favourite LLM shop for healthy food on Vilgain.cz (formerly Aktin).
This is an unofficial MCP server for personal use only.
This is a Model Context Protocol server that lets AI assistants search products, inspect ingredients and nutrition facts, and manage the shopping cart on vilgain.cz.
Because Vilgain focuses on clean-label food, the product detail tool exposes what matters there: ingredients, allergens and full nutrition facts — so you can shop by what's actually in the food.
Example prompts:
🛒 Shopping
Add whey protein and a jar of peanut butter to my cart. Pick well-rated ones.
I'm making protein pancakes — put the ingredients in my cart, high quality only.
What's in my cart right now and how much will it cost?
Swap the chocolate flavor in my cart for vanilla.
🥗 Ingredients & nutrition
Find a protein bar without sucralose and with at least 25 % protein.
Pick the omega-3 supplement with the best price per 1 g of EPA+DHA.
Compare the ingredients of Vilgain peanut butter and almond butter — which has the shorter ingredient list?
How much protein per 100 g does the vanilla flavor have compared to chocolate?
Does the Double Trouble bar contain any allergens I should worry about? I'm allergic to nuts.
Find me a breakfast granola with no added sugar and check its actual ingredient list.
🔁 Reordering
What did I buy in my last order?
Order the same things as last time, but skip the turkey breast.
When did my last order arrive and where did I pick it up?
Usage
Claude Desktop / Claude Code configuration
Add the MCP to the Claude Desktop configuration file:
macOS:
~/Library/Application Support/Claude/claude_desktop_config.jsonWindows:
%APPDATA%/Claude/claude_desktop_config.json
{
"mcpServers": {
"vilgain": {
"command": "npx",
"args": ["-y", "vilgain-mcp"],
"env": {
"VILGAIN_EMAIL": "your-email@example.com",
"VILGAIN_PASSWORD": "your-password"
}
}
}
}For Claude Code: claude mcp add vilgain -e VILGAIN_EMAIL=... -e VILGAIN_PASSWORD=... -- npx -y vilgain-mcp
Configuration
Variable | Required | Description |
| yes | Vilgain account e-mail |
| yes | Vilgain account password |
| no | Store base URL, defaults to |
Supported regions
Vilgain operates in several countries. The server is developed and tested against the Czech store; other regions can be selected with VILGAIN_BASE_URL and may work since they run the same platform, but are untested:
Czech Republic:
https://vilgain.cz(default)Slovakia:
https://vilgain.sk(untested)Other countries (
vilgain.com,vilgain.de, ...): untested
Related MCP server: Rohlik MCP
Tools
Tool | Description |
| Full-text product search with prices, ratings and the displayed variant's ID |
| All variants (flavors/sizes) of a product with prices and variant IDs |
| What's inside: ingredients, allergens, nutrition facts, dosage, description |
| Show cart items and total |
| Add a product variant to the cart |
| Change the quantity of a cart item |
| Remove an item from the cart |
| List past orders with dates, states, totals and product names |
| One order's items, prices, delivery destination and shipment timeline |
search_products results can go straight to add_to_cart (the displayed variant); use get_product_variants to pick a different flavor or size. Checkout is intentionally not automated — finish the order yourself in the browser.
Development
npm install
npm run build
npm test # parser unit tests (offline, against HTML fixtures)
npm run validate-api # live smoke test against vilgain.cz (needs credentials in .env)
npm run inspect # open MCP Inspector to try the tools manuallyCopy .env.example to .env and fill in your credentials for validate-api and inspect.
Testing with Claude Desktop
To run a local build instead of the published package, point the config at dist/index.js:
{
"mcpServers": {
"vilgain-local": {
"command": "node",
"args": ["/path/to/vilgain-mcp/dist/index.js"],
"env": {
"VILGAIN_EMAIL": "your-email@example.com",
"VILGAIN_PASSWORD": "your-password"
}
}
}
}The server has three layers:
src/vilgain-api.ts– HTTP client for the reverse engineered website endpoints (see docs/api.md)src/parsers/– pure functions that extract data from Vilgain HTML pages, unit-tested against fixturessrc/tools/– thin MCP tool wrappers around the API client
License
MIT
Related MCP Connectors
AI shopping gateway for product search, inventory, carts, and merchant-hosted checkout.
Search ~8.5M products from 2,500+ Central European e-shops. Semantic, keyword, GTIN lookup.
AI-agent product catalog: search, lookup & purchase routing over verified merchant data.
Agentic commerce gateway: discovery, search, checkout across Shopify/Woo/Odoo/PrestaShop.
Related MCP Servers
- AlicenseNot gradedqualityDmaintenanceEnables AI assistants to interact with Rohlik Group's online grocery delivery services across multiple European countries, supporting product search, shopping cart management, order history analysis, and personalized meal suggestions based on purchase patterns.27 npm3MIT
- AlicenseNot gradedqualityDmaintenanceEnables AI assistants to interact with Rohlik Group's online grocery delivery services across multiple countries, including product search, cart management, and account info.27 npm120MIT
- AlicenseNot gradedqualityDmaintenanceEnables shopping Ametller Origen online groceries through Claude, allowing catalog browsing, cart management, and order history access, with payment handled directly on the retailer's site.MIT
- FlicenseNot gradedqualityDmaintenanceEnables AI agents to browse product catalogs, search products with filters, and initiate checkouts, generating order summaries and checkout URLs.-