Skip to content
VS Code

sendhustle mcp for VS Code

io.github.achlesha/sendhustle-mcp

Send and manage email via the SendHustle API — emails, domains, contacts, audiences, campaigns.

client:VS Code transport:stdio runtime:npm

Install sendhustle mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "sendhustle-api-key",
      "description": "SENDHUSTLE_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "sender-email-address",
      "description": "SENDER_EMAIL_ADDRESS",
      "password": true
    }
  ],
  "servers": {
    "sendhustle-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "sendhustle-mcp"
      ],
      "env": {
        "SENDHUSTLE_API_KEY": "${input:sendhustle-api-key}",
        "SENDER_EMAIL_ADDRESS": "${input:sender-email-address}"
      }
    }
  }
}

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

sendhustle mcp in other clients