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

webhallen-mcp

v1.0.1

Published

MCP server for interacting with Webhallen - search products, manage shared wishlists (önskelistor)

Readme

webhallen-mcp

MCP server for interacting with Webhallen. Search products and manage shared wishlists (önskelistor) — designed for a shared office shopping list.

Uses pure HTTP calls (no browser dependency), so it works from background agents.

Tools

| Tool | Auth required | Description | |------|:---:|-------------| | login | - | Log in with username/password | | search_products | - | Search products by keyword (returns IDs, names, prices, stock) | | get_product | - | Get details for a specific product by ID | | list_wishlists | ✓ | List all your wishlists and their contents | | get_wishlist | ✓ | Get contents of a specific wishlist | | create_wishlist | ✓ | Create a new wishlist (e.g. "Kontoret Inköpslista") | | add_to_wishlist | ✓ | Add a product to a wishlist | | delete_wishlist | ✓ | Delete a wishlist |

Authentication

Two options:

Option A: Environment variables (recommended for background agents)

Set WEBHALLEN_USERNAME and WEBHALLEN_PASSWORD. The server logs in automatically on first authenticated request.

Option B: Login tool

Call the login tool with username and password. The session is kept in memory for the server's lifetime.

Option C: Existing session cookie

Set WEBHALLEN_COOKIES with a webhallen_session=... cookie value extracted from a browser session. Use this if you already have a valid session and want to avoid sending credentials.

Search works without authentication. Wishlist operations require it.

Installation

Build

cd webhallen-mcp
npm install
npm run build

Configure in opencode

Add to your opencode.json:

{
  "mcp": {
    "webhallen": {
      "command": "node",
      "args": ["/path/to/webhallen-mcp/dist/index.js"],
      "env": {
        "WEBHALLEN_USERNAME": "your_username",
        "WEBHALLEN_PASSWORD": "your_password"
      }
    }
  }
}

API endpoints used

| Endpoint | Method | Auth | Purpose | |----------|--------|:---:|---------| | /api/login | POST | - | Authenticate with username/password | | /api/me | GET | ✓ | Current user info | | /api/productdiscovery/autocomplete/{query} | GET | - | Product search | | /api/productdiscovery/category/{id} | GET | - | Browse by category | | /api/wishlist | GET | ✓ | List all wishlists | | /api/wishlist | POST | ✓ | Create wishlist | | /api/wishlist/{id} | PUT | ✓ | Add product to wishlist | | /api/wishlist/{id} | DELETE | ✓ | Delete wishlist |

Usage examples

Ask the agent:

  • "Sök efter Nintendo Switch 2 på Webhallen"
  • "Skapa en önskelista som heter Kontoret Inköpslista"
  • "Lägg till produkt 378404 i önskelistan"
  • "Visa alla önskelistor"