Skip to content
VS Code

Nitrosend for VS Code

com.nitrosend/nitrosend

AI-native email marketing. Campaigns, automations, transactional, contacts, and analytics.

client:VS Code transport:stdio runtime:npm

Install Nitrosend in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "nitrosend-api-key",
      "description": "NITROSEND_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "nitrosend-bearer-token",
      "description": "NITROSEND_BEARER_TOKEN",
      "password": true
    },
    {
      "type": "promptString",
      "id": "nitrosend-api-url",
      "description": "NITROSEND_API_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "nitrosend-brand-sid",
      "description": "NITROSEND_BRAND_SID",
      "password": true
    }
  ],
  "servers": {
    "nitrosend": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@nitrosend/mcp"
      ],
      "env": {
        "NITROSEND_API_KEY": "${input:nitrosend-api-key}",
        "NITROSEND_BEARER_TOKEN": "${input:nitrosend-bearer-token}",
        "NITROSEND_API_URL": "${input:nitrosend-api-url}",
        "NITROSEND_BRAND_SID": "${input:nitrosend-brand-sid}"
      }
    }
  }
}

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

Nitrosend in other clients