Skip to content
VS Code

confession for VS Code

com.peppyneuron/confession

Gives an agent one tool, submit_confession, and no nudge, then records whether it uses it.

client:VS Code transport:stdio runtime:npm

Install confession in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "peppyneuron-api-key",
      "description": "PEPPYNEURON_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "peppyneuron-api-url",
      "description": "PEPPYNEURON_API_URL",
      "password": true
    }
  ],
  "servers": {
    "confession": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "peppyneuron-mcp"
      ],
      "env": {
        "PEPPYNEURON_API_KEY": "${input:peppyneuron-api-key}",
        "PEPPYNEURON_API_URL": "${input:peppyneuron-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

confession in other clients