Skip to content
VS Code

Aruba Email & Calendar for VS Code

io.github.jackfioru92/aruba-email

MCP server for Aruba email and calendar via IMAP/SMTP/CalDAV

client:VS Code transport:stdio runtime:pypi

Install Aruba Email & Calendar in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "email-user",
      "description": "EMAIL_USER",
      "password": true
    },
    {
      "type": "promptString",
      "id": "email-password",
      "description": "EMAIL_PASSWORD",
      "password": true
    },
    {
      "type": "promptString",
      "id": "imap-host",
      "description": "IMAP_HOST",
      "password": true
    },
    {
      "type": "promptString",
      "id": "smtp-host",
      "description": "SMTP_HOST",
      "password": true
    },
    {
      "type": "promptString",
      "id": "caldav-url",
      "description": "CALDAV_URL",
      "password": true
    }
  ],
  "servers": {
    "aruba-email": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "mcp-aruba"
      ],
      "env": {
        "EMAIL_USER": "${input:email-user}",
        "EMAIL_PASSWORD": "${input:email-password}",
        "IMAP_HOST": "${input:imap-host}",
        "SMTP_HOST": "${input:smtp-host}",
        "CALDAV_URL": "${input:caldav-url}"
      }
    }
  }
}

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

Aruba Email & Calendar in other clients