Skip to content
VS Code

mcp sendgrid for VS Code

io.github.codespar/mcp-sendgrid

MCP server for SendGrid — global transactional + marketing email (Twilio-owned)

client:VS Code transport:stdio runtime:npm

Install mcp sendgrid in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "sendgrid-api-key",
      "description": "SENDGRID_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "sendgrid-from-email",
      "description": "SENDGRID_FROM_EMAIL",
      "password": true
    }
  ],
  "servers": {
    "mcp-sendgrid": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@codespar/mcp-sendgrid"
      ],
      "env": {
        "SENDGRID_API_KEY": "${input:sendgrid-api-key}",
        "SENDGRID_FROM_EMAIL": "${input:sendgrid-from-email}"
      }
    }
  }
}

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

mcp sendgrid in other clients