Skip to content
VS Code

email for VS Code

dev.wraps/email

Send email through your own Amazon SES account, and check domains, suppressions and sandbox status.

client:VS Code transport:stdio runtime:npm

Install email in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "aws-region",
      "description": "AWS_REGION",
      "password": true
    },
    {
      "type": "promptString",
      "id": "aws-profile",
      "description": "AWS_PROFILE",
      "password": true
    },
    {
      "type": "promptString",
      "id": "wraps-write-enabled",
      "description": "WRAPS_WRITE_ENABLED",
      "password": true
    },
    {
      "type": "promptString",
      "id": "wraps-from-email",
      "description": "WRAPS_FROM_EMAIL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "wraps-allowed-recipients",
      "description": "WRAPS_ALLOWED_RECIPIENTS",
      "password": true
    },
    {
      "type": "promptString",
      "id": "wraps-allowed-recipient-domains",
      "description": "WRAPS_ALLOWED_RECIPIENT_DOMAINS",
      "password": true
    },
    {
      "type": "promptString",
      "id": "wraps-history-table-name",
      "description": "WRAPS_HISTORY_TABLE_NAME",
      "password": true
    }
  ],
  "servers": {
    "email": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@wraps.dev/mcp"
      ],
      "env": {
        "AWS_REGION": "${input:aws-region}",
        "AWS_PROFILE": "${input:aws-profile}",
        "WRAPS_WRITE_ENABLED": "${input:wraps-write-enabled}",
        "WRAPS_FROM_EMAIL": "${input:wraps-from-email}",
        "WRAPS_ALLOWED_RECIPIENTS": "${input:wraps-allowed-recipients}",
        "WRAPS_ALLOWED_RECIPIENT_DOMAINS": "${input:wraps-allowed-recipient-domains}",
        "WRAPS_HISTORY_TABLE_NAME": "${input:wraps-history-table-name}"
      }
    }
  }
}

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

email in other clients