Skip to content
VS Code

logi approval for VS Code

dev.1pass/logi-approval

logi Agent Approval Gate — human approval on the phone before high-risk agent actions.

client:VS Code transport:stdio runtime:npm

Install logi approval in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "logi-agent-token",
      "description": "LOGI_AGENT_TOKEN",
      "password": true
    },
    {
      "type": "promptString",
      "id": "logi-agent-public-id",
      "description": "LOGI_AGENT_PUBLIC_ID",
      "password": true
    },
    {
      "type": "promptString",
      "id": "logi-agent-private-key",
      "description": "LOGI_AGENT_PRIVATE_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "logi-api-url",
      "description": "LOGI_API_URL",
      "password": true
    }
  ],
  "servers": {
    "logi-approval": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@logi-auth/mcp-approval"
      ],
      "env": {
        "LOGI_AGENT_TOKEN": "${input:logi-agent-token}",
        "LOGI_AGENT_PUBLIC_ID": "${input:logi-agent-public-id}",
        "LOGI_AGENT_PRIVATE_KEY": "${input:logi-agent-private-key}",
        "LOGI_API_URL": "${input:logi-api-url}"
      }
    }
  }
}

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

logi approval in other clients