Skip to content
VS Code

JMAP Email for VS Code

io.github.mikluko/jmap-mcp

Email management via JMAP — mailboxes, messages, identities, and Sieve scripts

client:VS Code transport:stdio runtime:oci

Install JMAP Email in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "jmap-session-url",
      "description": "JMAP_SESSION_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "jmap-auth-token",
      "description": "JMAP_AUTH_TOKEN",
      "password": true
    }
  ],
  "servers": {
    "jmap-mcp": {
      "type": "stdio",
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "ghcr.io/mikluko/jmap-mcp:0.10.0"
      ],
      "env": {
        "JMAP_SESSION_URL": "${input:jmap-session-url}",
        "JMAP_AUTH_TOKEN": "${input:jmap-auth-token}"
      }
    }
  }
}

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

JMAP Email in other clients