Skip to content
VS Code

SendGrid MCP Server for VS Code

io.github.deyikong/sendgrid-mcp

MCP server for SendGrid's v3 API: email marketing, transactional mail, templates, and analytics.

client:VS Code transport:stdio runtime:npm

Install SendGrid MCP Server in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "sendgrid-api-key",
      "description": "SENDGRID_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "read-only",
      "description": "READ_ONLY",
      "password": true
    }
  ],
  "servers": {
    "sendgrid-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "sendgrid-mcp"
      ],
      "env": {
        "SENDGRID_API_KEY": "${input:sendgrid-api-key}",
        "READ_ONLY": "${input:read-only}"
      }
    }
  }
}

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

SendGrid MCP Server in other clients