Skip to content
VS Code

LastBlueTape for VS Code

io.github.vulkanr/lastbluetape-mcp

Construction punch list management for AI agents. Create lists, add items, track progress.

client:VS Code transport:stdio runtime:npm

Install LastBlueTape in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "lastbluetape-api-key",
      "description": "LASTBLUETAPE_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "lastbluetape-payment-method",
      "description": "LASTBLUETAPE_PAYMENT_METHOD",
      "password": true
    }
  ],
  "servers": {
    "lastbluetape-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@lastbluetape/mcp-server"
      ],
      "env": {
        "LASTBLUETAPE_API_KEY": "${input:lastbluetape-api-key}",
        "LASTBLUETAPE_PAYMENT_METHOD": "${input:lastbluetape-payment-method}"
      }
    }
  }
}

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

LastBlueTape in other clients