Skip to content
VS Code

stickies for VS Code

io.github.dumbspacecookie/stickies

Persistent, expiring, importance-graded sticky notes for Claude Code.

client:VS Code transport:stdio runtime:npm

Install stickies in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "stickies-db",
      "description": "STICKIES_DB",
      "password": true
    },
    {
      "type": "promptString",
      "id": "stickies-discord-webhook",
      "description": "STICKIES_DISCORD_WEBHOOK",
      "password": true
    },
    {
      "type": "promptString",
      "id": "stickies-sync-repo",
      "description": "STICKIES_SYNC_REPO",
      "password": true
    }
  ],
  "servers": {
    "stickies": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "stickies-mcp"
      ],
      "env": {
        "STICKIES_DB": "${input:stickies-db}",
        "STICKIES_DISCORD_WEBHOOK": "${input:stickies-discord-webhook}",
        "STICKIES_SYNC_REPO": "${input:stickies-sync-repo}"
      }
    }
  }
}

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

stickies in other clients