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

@openweb-dev/mcp-server

v0.1.44

Published

MCP server for OpenWeb — the booking-grade reliability layer for AI agents. Self-host with docker-compose for free, OR set OPENWEB_BRAIN_URL + OPENWEB_BRAIN_KEY to point at the hosted brain.

Readme

@openweb-dev/mcp-server

MCP server for OpenWeb — the booking-grade reliability layer for AI agents.

Adds tools to your AI assistant (Claude Desktop, Cursor, etc.) for completing real bookings on the open web: restaurant reservations, event registrations, clinic appointments. Recipe-replay engine + unattended SMS verification via Twilio. ~95% reliability at ~$0.03/booking on validated platforms (SevenRooms, Eventbrite, Lu.ma, Solv, Resy).

Two ways to use it

| | Free (local) | Paid (hosted brain) | |---|---|---| | Install | git clone + docker-compose up + Anthropic key | npx @openweb-dev/mcp-server + 2 env vars | | Pays | Your own Anthropic spend | Per-call to brain operator | | Recipes | Private to your machine | Shared corpus across paid-tier customers | | Setup time | ~5 min | ~30 seconds |

Quickstart — hosted brain (recommended for non-developers)

Get a brain key from the maintainer (DM the issue or post in discussions), then add this to your Claude Desktop config:

~/Library/Application Support/Claude/claude_desktop_config.json (macOS) / %APPDATA%\Claude\claude_desktop_config.json (Windows):

{
  "mcpServers": {
    "webmcp": {
      "command": "npx",
      "args": ["-y", "@openweb-dev/mcp-server"],
      "env": {
        "OPENWEB_BRAIN_URL": "https://webmcp-brain.fly.dev",
        "OPENWEB_BRAIN_KEY": "sk_live_…",
        "OPENWEB_PROFILE_PATH": "/abs/path/to/.profile"
      }
    }
  }
}

Restart Claude Desktop. OpenWeb's tools (book, provide_input) are now available — try asking Claude to book a restaurant or RSVP to an event.

OPENWEB_PROFILE_PATH points at a JSON file with your contact info (first name, last name, email, phone, ...). See the main repo's .profile.example for the shape.

Quickstart — local self-host (for developers, free)

git clone https://github.com/songzeli/openweb
cd openweb
docker-compose up -d postgres
echo "ANTHROPIC_API_KEY=sk-ant-..." > .env
pnpm install && pnpm -r build
pnpm migrate

Then point Claude Desktop config at the local-built MCP server:

{
  "mcpServers": {
    "webmcp": {
      "command": "node",
      "args": ["/abs/path/to/openweb/packages/mcp-server/dist/index.js"],
      "env": {
        "DATABASE_URL": "postgresql://webmcp:webmcp_dev@localhost:5432/webmcp",
        "ANTHROPIC_API_KEY": "sk-ant-…",
        "OPENWEB_PROFILE_PATH": "/abs/path/to/.profile"
      }
    }
  }
}

Same MCP tools available; everything runs on your machine; nothing leaves your network.

What this MCP server exposes

| Tool | What it does | |---|---| | book | Submit a booking task. The engine reads your profile, navigates the site, fills the form, handles verification (SMS via Twilio if configured), and submits. Returns booking ID + status. | | provide_input | Resume a paused booking with user-supplied data (e.g. an OTP code if Twilio auto-resolution isn't set up). | | discover | Search OpenWeb's knowledge base for sites/platforms it knows. |

See the main repo for the full feature catalog: 5 validated platforms, ~40 named failure modes each with a shipped fix, 870+ unit tests.

Architecture (one diagram)

Claude Desktop ──► @openweb-dev/mcp-server (this package, runs on YOUR machine)
                          │
                          ▼
                   @openweb-dev/engine (bundled in)
                          │
              ┌───────────┴───────────┐
              ▼                       ▼
     local Chromium           https://webmcp-brain.fly.dev
     (Playwright)             (LLM + recipe corpus)
                              [only if OPENWEB_BRAIN_URL set]

The MCP server runs as a local subprocess on your machine. Web browsing happens locally via Playwright. LLM calls go either to your own Anthropic key (free local mode) or to the hosted brain (paid mode, set via 2 env vars).

Links

  • Repo / source / issues: https://github.com/songzeli/openweb
  • Strategy + roadmap: https://github.com/songzeli/openweb/blob/main/docs/PLAN.md
  • Closed-gap catalog (the moat): https://github.com/songzeli/openweb/blob/main/docs/archive/CLOSED_GAPS.md
  • License: MIT