Shufersal MCP Server
Automates shopping on the Shufersal website, enabling LLMs to search for products, create shopping lists, and manage the cart.
Shufersal MCP Server
A Model Context Protocol server that provides automated shopping capabilities for the Shufersal website using Puppeteer. This server enables LLMs to interact with Shufersal's online shopping platform, search for products, create shopping lists, and add items to your cart.
Key Features
- Product Search: Search Shufersal's product catalog, logged in user will get personalized results
- Cart Management: Add products to your Shufersal shopping cart
- Browser Automation: Seamless interaction with the Shufersal website
- Shopping List Management: Create structured shopping lists from web links (e.g. recipe links)
- Console Monitoring: Track console logs from the browser automation (for debugging)
Workflow
- Create Shopping List: Use
create_shopping_list_tableto create a shopping list from your request or recipe link - Open Shufersal: Use
open_shufersalto navigate to the Shufersal website (login required) - Search Products: Use
search_shufersalto find products matching your shopping list items - Add to Cart: Use
add_to_shufersal_cartto add found products to your shopping cart
Components
Tools
-
open_shufersal
- Open the Shufersal website and prepare for shopping (requires user login)
- Input:
hasCreatedShoppingList(boolean): Whether a shopping list has been created beforehand
-
search_shufersal
- Search for products on Shufersal website (results sorted by purchase history)
- Input:
query(string): Product search query (e.g., 'milk', 'bread', 'tomatoes')
-
add_to_shufersal_cart
- Add a product to the shopping cart (must be used after searching)
- Inputs:
product_id(string): Product ID from search resultssellingMethod(string): Selling method from search resultsqty(number): Quantity to add to cartcomment(string, optional): Optional comment for the product
Extra Tools for paste a recipe link
-
read_webpage_content
- Read and convert webpage content to markdown format
- Input:
url(string): URL of the webpage to read
-
create_shopping_list_table
- Create a shopping list table in markdown format from recipe ingredients
- Input:
recipe(array): Array of recipe ingredients with name, quantity, unit of measure, and optional brand
Resources
The server provides access to:
- Console Logs (
console://logs)- Browser console output in text format
- Includes all console messages from the browser automation
Configuration
Here's the Claude Desktop configuration to use the Shufersal MCP server:
{
"mcpServers": {
"shufersal": {
"command": "node",
"args": ["<path/to/shufersal-mcp>/dist/index.js"],
}
}
}
With custrom user data directory:
{
"mcpServers": {
"shufersal": {
"command": "node",
"args": ["<path/to/shufersal-mcp>/dist/index.js", "--user-data-dir=<path/to/custom/user/data>"],
}
}
}
Windows:
{
"mcpServers": {
"shufersal": {
"command": "<path/to/node>",
"args": ["<path/to/shufersal-mcp>/dist/index.js"],
}
}
}
Security Notice
IMPORTANT: This tool automates browser interactions with the Shufersal website and stores browser data locally. Please be aware:
- Browser session data is stored in
./puppeteer-user-data/(excluded from git) - If you log into Shufersal during first use, the tool will save your session data in the user data directory
- Only use this tool with trusted MCP clients
Development
Building
npm run build
Development Mode
npm run watch
Linting
npm run lint
npm run lint:fix
License
This MCP server is licensed under the MIT License. This means you are free to use, modify, and distribute the software, subject to the terms and conditions of the MIT License.
Related Servers
Bright Data
sponsorDiscover, extract, and interact with the web - one interface powering automated access across the public internet.
Stepstone
Fetches job listings from Stepstone.de based on keywords and location parameters.
Redbook Search & Comment Tool
An automated tool to search notes, analyze content, and post AI-generated comments on Xiaohongshu (Redbook) using Playwright.
Scrapling Fetch MCP
Fetches HTML and markdown from websites with anti-automation measures using Scrapling.
Selenium MCP Server
Control web browsers using the Selenium WebDriver for automation and testing.
Horse Racing News
Fetches horse racing news from the thoroughbreddailynews.com RSS feed.
ScreenshotOne
Render website screenshots with ScreenshotOne
Oxylabs
Scrape websites with Oxylabs Web API, supporting dynamic rendering and parsing for structured data extraction.
Apify
Extract data from any website with thousands of scrapers, crawlers, and automations
Website to Markdown MCP Server
Fetches and converts website content to Markdown with AI-powered cleanup, OpenAPI support, and stealth browsing.
Steel Puppeteer
Provides browser automation capabilities using Puppeteer and Steel, configurable for local or cloud instances.