Skip to content
VS Code

Fluxmail for VS Code

io.github.churichard/fluxmail

Read, search, draft, send, and organize email through Gmail, Outlook, and IMAP/SMTP mailboxes.

client:VS Code transport:stdio runtime:npm

Install Fluxmail in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "google-client-id",
      "description": "GOOGLE_CLIENT_ID",
      "password": true
    },
    {
      "type": "promptString",
      "id": "google-client-secret",
      "description": "GOOGLE_CLIENT_SECRET",
      "password": true
    },
    {
      "type": "promptString",
      "id": "fluxmail-data-dir",
      "description": "FLUXMAIL_DATA_DIR",
      "password": true
    },
    {
      "type": "promptString",
      "id": "fluxmail-license-key",
      "description": "FLUXMAIL_LICENSE_KEY",
      "password": true
    }
  ],
  "servers": {
    "fluxmail": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "fluxmail"
      ],
      "env": {
        "GOOGLE_CLIENT_ID": "${input:google-client-id}",
        "GOOGLE_CLIENT_SECRET": "${input:google-client-secret}",
        "FLUXMAIL_DATA_DIR": "${input:fluxmail-data-dir}",
        "FLUXMAIL_LICENSE_KEY": "${input:fluxmail-license-key}"
      }
    }
  }
}

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

Fluxmail in other clients