Skip to content
VS Code

mailpal for VS Code

io.github.michaelyousrie/mailpal

List, inspect, and run saved HTTP requests from MailPal collections; write tools on Pro

client:VS Code transport:stdio runtime:npm

Install mailpal in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "mailpal-workspace",
      "description": "MAILPAL_WORKSPACE",
      "password": true
    },
    {
      "type": "promptString",
      "id": "mailpal-history-dir",
      "description": "MAILPAL_HISTORY_DIR",
      "password": true
    }
  ],
  "servers": {
    "mailpal": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "mailpal-mcp"
      ],
      "env": {
        "MAILPAL_WORKSPACE": "${input:mailpal-workspace}",
        "MAILPAL_HISTORY_DIR": "${input:mailpal-history-dir}"
      }
    }
  }
}

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

mailpal in other clients