Skip to content
VS Code

nightmarquee for VS Code

io.github.ant-dev-lab/nightmarquee

Cinematic website prompts as slash commands, tuned for Lovable, Bolt, Cursor and Claude.

client:VS Code transport:stdio runtime:npm

Install nightmarquee in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "nightmarquee-token",
      "description": "NIGHTMARQUEE_TOKEN",
      "password": true
    },
    {
      "type": "promptString",
      "id": "nightmarquee-no-telemetry",
      "description": "NIGHTMARQUEE_NO_TELEMETRY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "nightmarquee-timeout-ms",
      "description": "NIGHTMARQUEE_TIMEOUT_MS",
      "password": true
    }
  ],
  "servers": {
    "nightmarquee": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "nightmarquee"
      ],
      "env": {
        "NIGHTMARQUEE_TOKEN": "${input:nightmarquee-token}",
        "NIGHTMARQUEE_NO_TELEMETRY": "${input:nightmarquee-no-telemetry}",
        "NIGHTMARQUEE_TIMEOUT_MS": "${input:nightmarquee-timeout-ms}"
      }
    }
  }
}

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

nightmarquee in other clients