PluginBench
MCP Server
Active
MIT

io.github.dumbspacecookie/stickies MCP Server

io.github.dumbspacecookie/stickies

What is the io.github.dumbspacecookie/stickies MCP server?

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

How to install io.github.dumbspacecookie/stickies

Copy-paste configuration for popular MCP clients.

transport: stdio
Config generated by PluginBench — verify against the source before use.
Environment / auth
  • STICKIES_DB

    Path to the SQLite store (default ~/.stickies/stickies.db).

  • STICKIES_DISCORD_WEBHOOK
    secret

    Optional Discord webhook URL to mirror sticky lifecycle events.

  • STICKIES_SYNC_REPO

    Path to a git clone you own, used as the opt-in cross-machine sync store.

Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
  "mcpServers": {
    "stickies": {
      "command": "npx",
      "args": [
        "-y",
        "stickies-mcp"
      ],
      "env": {
        "STICKIES_DB": "<YOUR_STICKIES_DB>",
        "STICKIES_DISCORD_WEBHOOK": "<YOUR_STICKIES_DISCORD_WEBHOOK>",
        "STICKIES_SYNC_REPO": "<YOUR_STICKIES_SYNC_REPO>"
      }
    }
  }
}
Cursor
~/.cursor/mcp.json
{
  "mcpServers": {
    "stickies": {
      "command": "npx",
      "args": [
        "-y",
        "stickies-mcp"
      ],
      "env": {
        "STICKIES_DB": "<YOUR_STICKIES_DB>",
        "STICKIES_DISCORD_WEBHOOK": "<YOUR_STICKIES_DISCORD_WEBHOOK>",
        "STICKIES_SYNC_REPO": "<YOUR_STICKIES_SYNC_REPO>"
      }
    }
  }
}
Windsurf
~/.codeium/windsurf/mcp_config.json
{
  "mcpServers": {
    "stickies": {
      "command": "npx",
      "args": [
        "-y",
        "stickies-mcp"
      ],
      "env": {
        "STICKIES_DB": "<YOUR_STICKIES_DB>",
        "STICKIES_DISCORD_WEBHOOK": "<YOUR_STICKIES_DISCORD_WEBHOOK>",
        "STICKIES_SYNC_REPO": "<YOUR_STICKIES_SYNC_REPO>"
      }
    }
  }
}
VS Code
.vscode/mcp.json
{
  "servers": {
    "stickies": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "stickies-mcp"
      ],
      "env": {
        "STICKIES_DB": "<YOUR_STICKIES_DB>",
        "STICKIES_DISCORD_WEBHOOK": "<YOUR_STICKIES_DISCORD_WEBHOOK>",
        "STICKIES_SYNC_REPO": "<YOUR_STICKIES_SYNC_REPO>"
      }
    }
  }
}
Claude Code
claude mcp add stickies --env STICKIES_DB=<YOUR_STICKIES_DB> --env STICKIES_DISCORD_WEBHOOK=<YOUR_STICKIES_DISCORD_WEBHOOK> --env STICKIES_SYNC_REPO=<YOUR_STICKIES_SYNC_REPO> -- npx -y stickies-mcp

Related MCP servers

Procedure verification for AR/XR with memory, visual sessions, and DPO trajectory export.

2
Python
MIT
View repository →