Skip to content
VS Code

waitlister for VS Code

io.github.ilpr/waitlister

Create waitlists, landing pages, manage subscribers, referrals, and view stats on Waitlister.

client:VS Code transport:stdio runtime:npm

Install waitlister in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "waitlister-account-key",
      "description": "WAITLISTER_ACCOUNT_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "waitlister-api-key",
      "description": "WAITLISTER_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "waitlister-waitlist-key",
      "description": "WAITLISTER_WAITLIST_KEY",
      "password": true
    }
  ],
  "servers": {
    "waitlister": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@waitlister/mcp"
      ],
      "env": {
        "WAITLISTER_ACCOUNT_KEY": "${input:waitlister-account-key}",
        "WAITLISTER_API_KEY": "${input:waitlister-api-key}",
        "WAITLISTER_WAITLIST_KEY": "${input:waitlister-waitlist-key}"
      }
    }
  }
}

VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs

waitlister in other clients