Skip to content
VS Code

lauther for VS Code

io.github.csanadymiklos/lauther

Puts Approve/Deny on your phone before an agent acts, and waits for your fingerprint.

client:VS Code transport:stdio runtime:npm

Install lauther in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "lauther-token",
      "description": "LAUTHER_TOKEN",
      "password": true
    }
  ],
  "servers": {
    "lauther": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "lauther-mcp"
      ],
      "env": {
        "LAUTHER_TOKEN": "${input:lauther-token}"
      }
    }
  }
}

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

lauther in other clients