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

waitlister-mcp

v1.0.2

Published

MCP server for the Waitlister API — manage your waitlist subscribers through AI assistants like Claude, Cursor, and more.

Readme

Waitlister MCP Server

An MCP (Model Context Protocol) server that connects AI assistants like Claude, Cursor, and Windsurf to the Waitlister API. Manage your waitlist subscribers through natural language.

What Can You Do With This?

Once connected, you can ask your AI assistant things like:

  • "Add [email protected] to my waitlist"
  • "How many subscribers do I have?"
  • "Look up the subscriber [email protected]"
  • "Update John's points to 500"
  • "Show me the top 10 subscribers by referral count"

Tools

| Tool | Description | | --- | --- | | add_subscriber | Add a new subscriber to your waitlist | | list_subscribers | List subscribers with pagination and sorting | | get_subscriber | Get details for a specific subscriber by ID or email | | update_subscriber | Update a subscriber's name, phone, points, or metadata | | log_view | Record a waitlist page view for analytics |

Prerequisites

  • Node.js 18+
  • A Waitlister account on the Growth or Business plan (API access required)
  • Your API key and waitlist key from the Waitlister dashboard

Getting Your Keys

  1. Log in to Waitlister
  2. Go to IntegrationsAPI accessGenerate API key
  3. Your waitlist key is found in your waitlist settings

Installation

Using npx (recommended)

No installation needed — just configure your MCP client:

{
  "mcpServers": {
    "waitlister": {
      "command": "npx",
      "args": ["-y", "waitlister-mcp"],
      "env": {
        "WAITLISTER_API_KEY": "your-api-key",
        "WAITLISTER_WAITLIST_KEY": "your-waitlist-key"
      }
    }
  }
}

Global install

npm install -g waitlister-mcp

Then configure:

{
  "mcpServers": {
    "waitlister": {
      "command": "waitlister-mcp",
      "env": {
        "WAITLISTER_API_KEY": "your-api-key",
        "WAITLISTER_WAITLIST_KEY": "your-waitlist-key"
      }
    }
  }
}

Setup by Client

Claude Desktop

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

{
  "mcpServers": {
    "waitlister": {
      "command": "npx",
      "args": ["-y", "waitlister-mcp"],
      "env": {
        "WAITLISTER_API_KEY": "your-api-key",
        "WAITLISTER_WAITLIST_KEY": "your-waitlist-key"
      }
    }
  }
}

Cursor

Go to SettingsMCPAdd new MCP server and use the same configuration above.

Claude Code

claude mcp add waitlister -- npx -y waitlister-mcp

Then set the environment variables WAITLISTER_API_KEY and WAITLISTER_WAITLIST_KEY.

Environment Variables

| Variable | Required | Description | | --- | --- | --- | | WAITLISTER_API_KEY | Yes | Your Waitlister API key | | WAITLISTER_WAITLIST_KEY | Yes | Your unique waitlist key |

Tool Reference

add_subscriber

Add a new subscriber to your waitlist.

Parameters:

  • email (string, required) — Subscriber's email address
  • name (string, optional) — Subscriber's name
  • phone (string, optional) — Subscriber's phone number
  • referred_by (string, optional) — Referral code of the person who referred them
  • metadata (object, optional) — Custom fields (e.g. { "company": "Acme" })

list_subscribers

Retrieve a paginated list of subscribers.

Parameters:

  • limit (number, default 20) — Results per page (1–100)
  • page (number, default 1) — Page number
  • sort_by (string, default "date") — Sort field: position, points, date, referral_count, email
  • sort_dir (string, default "desc") — Sort direction: asc or desc

get_subscriber

Get detailed info for a specific subscriber.

Parameters:

  • id_or_email (string, required) — Subscriber's ID or email address

update_subscriber

Update a subscriber's information.

Parameters:

  • id_or_email (string, required) — Subscriber's ID or email address
  • name (string, optional) — Updated name
  • phone (string, optional) — Updated phone number
  • points (number, optional) — Updated points value
  • metadata (object, optional) — Custom fields to add/update (merged with existing)

log_view

Record a waitlist page view.

Parameters:

  • visitor_id (string, optional) — Unique visitor identifier (prevents duplicate counts)
  • referring_domain (string, optional) — Referring domain

Rate Limits

Rate limits depend on your Waitlister plan:

| Plan | Subscriber Endpoints | Log View Endpoint | | --- | --- | --- | | Growth | 60 requests/min | 200 requests/min | | Business | 120 requests/min | 400 requests/min |

Development

git clone https://github.com/waitlister/waitlister-mcp.git
cd waitlister-mcp
npm install
npm run build

Test with the MCP Inspector:

WAITLISTER_API_KEY=your-key WAITLISTER_WAITLIST_KEY=your-key npm run inspect

Links

License

MIT