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 🙏

© 2026 – Pkg Stats / Ryan Hefner

@skills-il/supermarket-prices-mcp

v1.0.1

Published

MCP server for Israeli supermarket price data from the government-mandated Price Transparency Law

Readme

supermarket-prices-mcp

Part of skills-il — browse all Israeli MCP servers at agentskills.co.il/mcp.

An MCP (Model Context Protocol) server that provides access to Israeli supermarket price data from the government-mandated Price Transparency Law.

Install

npx -y @skills-il/supermarket-prices-mcp

Claude Desktop

Add to claude_desktop_config.json:

{
  "mcpServers": {
    "supermarket-prices": {
      "command": "npx",
      "args": ["-y", "@skills-il/supermarket-prices-mcp"]
    }
  }
}

Claude Code

claude mcp add supermarket-prices npx -- -y @skills-il/supermarket-prices-mcp

Background

Under Israel's 2014 Food Act (Price Transparency in the Food Industry), all supermarket chains with 3 or more stores are required to publish their product prices, promotions, and store information as XML files daily. This data is publicly accessible.

This MCP server wraps that public data, making it queryable through standard MCP tools. It covers ~35 supermarket chains including Shufersal, Rami Levy, Yeinot Bitan, Osher Ad, Victory, Tiv Taam, and many more.

Data Sources

The price transparency data is published in three ways:

| Source Type | Example Chains | Access | |-------------|---------------|--------| | Web portals | Shufersal | Direct HTTP (this MCP fetches directly) | | PublishPrice portals | Yeinot Bitan/Carrefour | Direct HTTP (this MCP fetches directly) | | FTP feeds | Rami Levy, Victory, Tiv Taam, and ~25 others | FTP at url.retail.publishedprices.co.il |

For FTP-based chains, this MCP provides connection details and guidance on using the OpenIsraeliSupermarkets Python scraper or the Kaggle dataset (updated daily).

Tools

| Tool | Description | |------|-------------| | list_chains | List all ~35 Israeli supermarket chains, their IDs, data feed types, and access URLs | | get_chain_files | Browse published price/promo/store XML files from a specific chain | | search_products | Search for products by name (Hebrew/English) or barcode in a price XML file | | compare_prices | Compare a product's price across multiple chains/stores | | get_store_data | Get store locations, addresses, and cities from a chain's store data | | get_promotions | Get current promotions, discounts, and sales from a chain | | get_xml_schema_info | Reference documentation for the XML data schema and field definitions |

Typical Workflow

  1. list_chains to see all available chains and their access methods
  2. get_chain_files with a chain key and file type to browse available data files
  3. search_products with an XML file URL and a product name to find items
  4. compare_prices with multiple XML URLs and a barcode to compare across stores
  5. get_promotions to check current sales and discounts

Installation

npm install
npm run build

Configuration

Claude Desktop

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "supermarket-prices": {
      "command": "npx", "args": ["-y", "@skills-il/supermarket-prices-mcp"]
    }
  }
}

Claude Code

claude mcp add supermarket-prices npx -- -y @skills-il/supermarket-prices-mcp

XML Data Schema

The Israeli supermarket XML files follow a government-mandated schema:

Price Files (PriceFull / Price)

Each <Item> contains:

  • ItemCode -- Product barcode (EAN-13)
  • ItemName -- Product name (Hebrew)
  • ItemPrice -- Price in ILS
  • UnitOfMeasurePrice -- Price per standard unit
  • ManufacturerName -- Manufacturer
  • Quantity, UnitOfMeasure -- Package size
  • PriceUpdateDate -- When the price was last updated

Promotion Files (PromoFull / Promo)

Each <Promotion> contains:

  • PromotionId, PromotionDescription
  • PromotionStartDate, PromotionEndDate
  • DiscountRate, DiscountType
  • List of applicable ItemCode values

Store Files

Each <Store> contains:

  • StoreId, StoreName
  • Address, City, ZipCode
  • StoreType

Related Projects

License

MIT