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_DBPath to the SQLite store (default ~/.stickies/stickies.db).
STICKIES_DISCORD_WEBHOOKsecretOptional Discord webhook URL to mirror sticky lifecycle events.
STICKIES_SYNC_REPOPath 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-mcpRelated MCP servers
io.github.dumbspacecookie/openeye
Maintained
Procedure verification for AR/XR with memory, visual sessions, and DPO trajectory export.
2
View repository →Python
MIT