Skip to content
VS Code

engagelab email for VS Code

io.github.r1ghtherewaiting/engagelab-email

Send, receive, monitor and reply to email from AI agents with threaded inbox context.

client:VS Code transport:stdio runtime:npm

Install engagelab email in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "engagelab-email-secret-key",
      "description": "ENGAGELAB_EMAIL_SECRET_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "engagelab-email-base-url",
      "description": "ENGAGELAB_EMAIL_BASE_URL",
      "password": true
    }
  ],
  "servers": {
    "engagelab-email": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@engagelabemail/mcp"
      ],
      "env": {
        "ENGAGELAB_EMAIL_SECRET_KEY": "${input:engagelab-email-secret-key}",
        "ENGAGELAB_EMAIL_BASE_URL": "${input:engagelab-email-base-url}"
      }
    }
  }
}

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

engagelab email in other clients