Skip to content
VS Code

EmptyInbox for VS Code

io.github.cnohall/emptyinbox

Zero-config disposable email inboxes for AI agents: create, read mail, await verify codes.

client:VS Code transport:stdio runtime:npm

Install EmptyInbox in VS Code

.vscode/mcp.json

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

EmptyInbox in other clients