A lightweight, developer-focused Windows desktop application inspired by Windows Sticky Notes, with native Markdown editing, syntax-highlighted collapsible code blocks, SQLite persistence, and native Windows Startup / System Tray integration.
Built with Tauri v2 + Rust + React 19 + TypeScript + Tailwind CSS (Under 40 MB idle RAM, zero Chromium bloat).
Multi-theme floating notes with interactive checklists, VS Code Dark+ code blocks, and markdown tables:
Search notes, filter by color, toggle card sizes, and manage your entire workspace:
Check for GitHub releases, view changelogs, download signed updates, and restart with one click:
- πͺ Floating Frameless Sticky Notes: Custom drag regions, real-time coordinate & size persistence, and per-note "Always on Top" pin.
- π Windows Startup & System Tray: Run in background with a native tray context menu (New Note, Notes Hub, Show/Hide All, Startup Toggle, Exit).
- π¨ 7 Color Themes: Classic Yellow, Mint Green, Pastel Pink, Lavender Purple, Sky Blue, Charcoal Dark, and Slate Grey.
- π» Developer Markdown & Code Blocks:
- Multi-language syntax highlighting with VS Code Dark+ styling.
- Collapsible / Expandable long code snippets with line count badges.
- One-click "Copy Code" button.
- Interactive checklists with nested task lists (
Tab/Shift+Tab). - Tables, blockquotes, links, and drag-and-drop image support.
- ποΈ Central Notes Hub: Search, filter by color, archive, or permanently delete notes, with a toggleable card size view (Small, Medium, Large).
- π€ Markdown Export (.md): Export any note directly from its thumbnail in the Notes Hub into a formatted Markdown file via a native Windows "Save As" dialog, preserving headings, checklists, code blocks, tables, images, and inline styles.
- π In-App Auto-Updates: Seamless GitHub Releases integration with Tauri v2 updater. Checks for new releases, displays changelogs, validates cryptographic signatures, downloads in background, and relaunches smoothly.
- π Single Instance Protection: Native Windows Kernel Mutex ensures only one instance runs at a time.
- π€ Model Context Protocol (MCP) Server: Manage your sticky notes with any AI agent (Antigravity, Claude Desktop, Cursor, Claude Code, Cline) with full support for tables, code blocks, checklists, and themes!
- πΎ SQLite Storage: Crash-resilient local database with Write-Ahead Logging (WAL) stored in
%APPDATA%/VibeNotes/vibenotes.db.
VibeNotes features a built-in, native Rust Model Context Protocol (MCP) server embedded directly inside the vibenotes.exe binary.
This enables any AI coding assistant or autonomous agent (Google Antigravity, Claude Desktop, Cursor, Claude Code, Cline, Windsurf, etc.) to create and manage your desktop sticky notes in real time over standard I/O (stdio) with zero runtime dependencies (no Node.js or npm needed!).
βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
β vibenotes.exe β
ββββββββββββββββββββββββββββββββ¬βββββββββββββββββββββββββββββββ€
β Standard App Launch β `--mcp` Flag β
β (Double-click or Startup) β (Launched by AI Agent) β
ββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββ€
β β’ Floating Sticky Notes GUI β β’ Embedded Rust MCP Server β
β β’ System Tray Menu β β’ Stdio JSON-RPC 2.0 Loop β
β β’ Central Notes Hub β β’ Zero Node.js Required β
ββββββββββββββββ¬ββββββββββββββββ΄βββββββββββββββ¬ββββββββββββββββ
β β
ββββββββββββββββ¬ββββββββββββββββ
βΌ
%APPDATA%/VibeNotes/vibenotes.db
(SQLite Concurrent WAL Mode)
Add to %APPDATA%\Claude\claude_desktop_config.json:
{
"mcpServers": {
"vibenotes": {
"command": "C:/Program Files/VibeNotes/vibenotes.exe",
"args": ["--mcp"]
}
}
}(In development, point to d:/Dev/VibeCoding/VibeNotes/src-tauri/target/release/vibenotes.exe)
Add to your project or user .gemini/antigravity/mcp.json or .cursor/mcp.json:
{
"mcpServers": {
"vibenotes": {
"command": "C:/Program Files/VibeNotes/vibenotes.exe",
"args": ["--mcp"]
}
}
}claude mcp add vibenotes -- "C:/Program Files/VibeNotes/vibenotes.exe" --mcpAdd to your MCP Settings:
{
"mcpServers": {
"vibenotes": {
"command": "C:/Program Files/VibeNotes/vibenotes.exe",
"args": ["--mcp"],
"disabled": false,
"autoApprove": []
}
}
}π‘ Tip: If you are developing locally without installing, replace
"C:/Program Files/VibeNotes/vibenotes.exe"with your local build path:"d:/Dev/VibeCoding/VibeNotes/src-tauri/target/release/vibenotes.exe".
| Tool | Description | Parameters |
|---|---|---|
create_note |
Creates a new floating sticky note with rich markdown. | content (Markdown string with tables, code blocks, checklists), title (optional), color_theme (yellow, green, pink, purple, blue, charcoal, grey), is_pinned (bool), is_always_on_top (bool) |
update_note |
Updates markdown content, title, theme, pin, or always-on-top status. | id (required), content, title, color_theme, is_pinned, is_always_on_top |
append_note_content |
Appends markdown text, code blocks, tables, or task items to an existing note. | id (required), content (required) |
manage_checklist |
Checks, unchecks, toggles, or adds tasks directly without rewriting the note. | id (required), action (list, check, uncheck, toggle, add_item), item_index (0-based int), item_text (match query), new_item_text |
list_notes |
Lists active or archived notes with search, color filtering, and live task completion stats. | search (query string), color_theme, include_archived (bool) |
get_note |
Retrieves complete note details, raw markdown, and checklist breakdown. | id (required) |
delete_note |
Removes a sticky note (archives by default, or permanently deletes). | id (required), permanent (bool, default: false) |
restore_note |
Restores an archived sticky note back to the active desktop workspace. | id (required) |
- π "Create a blue sticky note titled 'Sprint 42 Deliverables' with a checklist for today's tasks."
- βοΈ "Mark the task 'Deploy migration' as done in my Sprint note."
- π» "Create a charcoal sticky note with this Rust concurrency snippet."
- π "Add a markdown table comparing SQLite vs PostgreSQL to my Architecture note."
- π "List all my active sticky notes and show which ones have pending tasks."
- ποΈ "Archive my meeting notes from yesterday."
Make sure you have the following installed on Windows:
- Node.js (v18 or higher)
- Rust & Cargo (
rustupwith thex86_64-pc-windows-msvctoolchain) - C++ Build Tools (from Visual Studio Installer)
- Microsoft Edge WebView2 (pre-installed by default on Windows 10/11)
# Clone repository
git clone https://github.com/vahabahmadvand/VibeNotes.git
cd VibeNotes
# Install frontend dependencies
npm installStarts the live development server with hot-reloading:
npm run tauri devTo compile an optimized, standalone Windows executable:
npm run tauri buildOnce the build finishes:
- Standalone
.exe:src-tauri/target/release/vibenotes.exe(~18 MB) - NSIS Setup Installer:
src-tauri/target/release/bundle/nsis/VibeNotes_0.5.0_x64-setup.exe - MSI Installer:
src-tauri/target/release/bundle/msi/VibeNotes_0.5.0_x64_en-US.msi
You can take vibenotes.exe and run it anywhere on Windows without installing anything!
VibeNotes/
βββ docs/ # Screenshots & assets for README
β βββ screenshots/
β βββ sticky-notes-preview.png
β βββ notes-hub-preview.png
β βββ auto-update-preview.png
βββ src/ # React 19 Frontend
β βββ components/
β β βββ StickyNote.tsx # Floating frameless sticky note window
β β βββ NotesHub.tsx # Central searchable notes manager
β β βββ UpdateModal.tsx # In-app update & changelog dialog
β β βββ CodeBlockView.tsx # Syntax-highlighted code block with collapse/expand
β β βββ FormatToolbar.tsx # WYSIWYG markdown formatting bar
β β βββ ThemePicker.tsx # 7-color palette switcher
β β βββ DeleteConfirmModal.tsx # Delete confirmation dialog
β βββ utils/
β β βββ markdown.ts # TipTap to Markdown converter & filename sanitizer
β βββ styles/
β β βββ globals.css # Themes & custom CSS tokens
β βββ App.tsx # Route switcher (#/note/:id vs #/hub)
β βββ main.tsx # Frontend entrypoint
β βββ types.ts # Shared TypeScript models
βββ src-tauri/ # Rust Backend (Tauri v2)
β βββ src/
β β βββ main.rs # Application entrypoint & Windows subsystem
β β βββ lib.rs # App setup, tray setup, and window restoration
β β βββ autostart.rs # Windows Registry HKCU Run key manager
β β βββ tray.rs # Native System Tray menu & event dispatcher
β β βββ db.rs # SQLite connection pool, WAL mode, migrations
β β βββ commands.rs # Tauri IPC commands & multi-window manager
β β βββ models.rs # Data structures
β βββ Cargo.toml # Rust dependencies (rusqlite, winreg, tauri v2)
β βββ tauri.conf.json # Tauri configuration & capabilities
βββ package.json
βββ tailwind.config.js
MIT License. Free for personal and commercial use.


