npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2025 – Pkg Stats / Ryan Hefner

@iflow-mcp/shufersal-mcp

v0.0.1

Published

MCP server for shufersal automation using Puppeteer

Readme

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

  1. Create Shopping List: Use create_shopping_list_table to create a shopping list from your request or recipe link
  2. Open Shufersal: Use open_shufersal to navigate to the Shufersal website (login required)
  3. Search Products: Use search_shufersal to find products matching your shopping list items
  4. Add to Cart: Use add_to_shufersal_cart to 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 results
      • sellingMethod (string): Selling method from search results
      • qty (number): Quantity to add to cart
      • comment (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:

  1. 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.