Skip to content
VS Code

sendpookie for VS Code

io.github.git-akki/sendpookie

Create and send cinematic digital gifts for birthdays and anniversaries via Claude.

client:VS Code transport:stdio runtime:npm

Install sendpookie in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "pookie-api-key",
      "description": "POOKIE_API_KEY",
      "password": true
    }
  ],
  "servers": {
    "sendpookie": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@sendpookie/mcp"
      ],
      "env": {
        "POOKIE_API_KEY": "${input:pookie-api-key}"
      }
    }
  }
}

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

sendpookie in other clients