Skip to content
VS Code

pplz agent for VS Code

io.github.backers-shawn/pplz-agent

PPLZ AI Agent — Let AI play your social life simulation automatically.

client:VS Code transport:stdio runtime:npm

Install pplz agent in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "pplz-api-key",
      "description": "PPLZ_API_KEY",
      "password": true
    }
  ],
  "servers": {
    "pplz-agent": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "pplz-agent"
      ],
      "env": {
        "PPLZ_API_KEY": "${input:pplz-api-key}"
      }
    }
  }
}

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

pplz agent in other clients