Skip to content
VS Code

sendable for VS Code

me.sendable/sendable

Send transactional email from your editor — describe the event, Sendable writes and sends it.

client:VS Code transport:stdio runtime:npm

Install sendable in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "sendable-api-key",
      "description": "SENDABLE_API_KEY",
      "password": true
    }
  ],
  "servers": {
    "sendable": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "sendableme-mcp"
      ],
      "env": {
        "SENDABLE_API_KEY": "${input:sendable-api-key}"
      }
    }
  }
}

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

sendable in other clients