CAT
/MCP
SkillsMCPMarketplacesDigestToolsAdvertise

This week in Claude

Every Monday: Claude Code, Agent SDK, MCP, and the Anthropic platform moves worth your time.

Skills by Category
Frontend DevelopmentBackend & APIsTesting & QASecurityDevOps & CI/CDGit & Pull RequestsDocumentationCode Review & QualityAI & Agent BuildingSkill Development
MCP Servers by Category
Sales & MarketingWeb & Browser AutomationDatabasesAI & LLM ToolsCloud & InfrastructureCommunication & MessagingDeveloper ToolsDesign & CreativeDocuments & KnowledgeSearch & Web Crawling
Marketplaces by Category
AI Agents & OrchestrationLLM IntegrationDevelopment ToolsFrontend & UIBackend & APIsDatabasesTesting & Code QualityDevOps & CloudSecurity & ComplianceGit & Version Control

Cross AI Tools

Discover Claude Code plugins, extensions, and tools. Automatically updated directory of Anthropic Claude AI marketplaces with development tools, productivity plugins, and integrations.

Resources

  • Browse Skills
  • Browse MCP Servers
  • Browse Marketplaces
  • Plugins Reference

Community

  • About
  • Tools
  • Feedback
  • Privacy Policy
  • Advertise

Built for the Claude Code community with Claude Code by @mertduzgun

Independent project, not affiliated with Anthropic

Waitlister

ilpr/waitlister-mcp
authSTDIOregistry active
Summary

Connects Claude and other MCP clients to the Waitlister API for managing product launch waitlists through natural language. Exposes five core operations: adding subscribers with optional referral tracking and custom metadata, listing and sorting subscribers by position or referral count, looking up individuals by email or ID, updating subscriber details and points, and logging page views for analytics. Requires a Waitlister Growth or Business plan for API access. Useful if you're running a waitlist campaign and want to manage subscribers, check leaderboard rankings, or update referral points without leaving your editor or chat interface. Rate limits are 60 to 120 requests per minute depending on your plan tier.

CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →

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 test@gmail.com to my waitlist"
  • "How many subscribers do I have?"
  • "Look up the subscriber john@acme.com"
  • "Update John's points to 500"
  • "Show me the top 10 subscribers by referral count"

Tools

ToolDescription
add_subscriberAdd a new subscriber to your waitlist
list_subscribersList subscribers with pagination and sorting
get_subscriberGet details for a specific subscriber by ID or email
update_subscriberUpdate a subscriber's name, phone, points, or metadata
log_viewRecord 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 Integrations → API access → Generate 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 Settings → MCP → Add 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

VariableRequiredDescription
WAITLISTER_API_KEYYesYour Waitlister API key
WAITLISTER_WAITLIST_KEYYesYour 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:

PlanSubscriber EndpointsLog View Endpoint
Growth60 requests/min200 requests/min
Business120 requests/min400 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

  • Waitlister — Create waitlists for your product launches
  • API Documentation
  • MCP Protocol

License

MIT

Featured
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →

Configuration

WAITLISTER_API_KEY*secret

Your Waitlister API key

WAITLISTER_WAITLIST_KEY*

Your unique waitlist key

Registryactive
Packagewaitlister-mcp
TransportSTDIO
AuthRequired
UpdatedFeb 8, 2026
View on GitHub