Skip to content
VS Code

ecardwidget mcp for VS Code

io.github.ecardwidget/ecardwidget-mcp

Send eCards, run bulk campaigns, and automate recurring cards from your AI assistant.

client:VS Code transport:stdio runtime:npm

Install ecardwidget mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "ecw-api-key",
      "description": "ECW_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "ecw-base-url",
      "description": "ECW_BASE_URL",
      "password": true
    }
  ],
  "servers": {
    "ecardwidget-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "ecardwidget-mcp"
      ],
      "env": {
        "ECW_API_KEY": "${input:ecw-api-key}",
        "ECW_BASE_URL": "${input:ecw-base-url}"
      }
    }
  }
}

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

ecardwidget mcp in other clients