Skip to content
VS Code

PopUp Organizer for VS Code

com.usepopup/organizer

Read-only MCP server for PopUp — search vendors, manage events, and track applications.

client:VS Code transport:stdio runtime:npm

Install PopUp Organizer in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "popup-api-key",
      "description": "POPUP_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "popup-api-base",
      "description": "POPUP_API_BASE",
      "password": true
    }
  ],
  "servers": {
    "organizer": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@popupspacesystems/mcp-server"
      ],
      "env": {
        "POPUP_API_KEY": "${input:popup-api-key}",
        "POPUP_API_BASE": "${input:popup-api-base}"
      }
    }
  }
}

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

PopUp Organizer in other clients