๐๏ธ AI Sticky Notes โ MCP Server in Python
This project is a minimal MCP (Message Control Protocol) server built in Python using the mcp. It lets you create and manage sticky notes that can be read, updated, and summarized by an AI agent like Claude, via Claude Desktop.
๐ Features
โ Add and save notes
๐ Read all saved notes
๐ Fetch the latest note
๐ง Prompt Claude to summarize all notes
Related MCP server: ClickUp Operator
๐ฆ Requirements
Python 3.8+
Claude Desktop installed
uv (recommended over pip for dependency management)
MCP Python SDK
๐ Setup
Install
# Windows irm https://astral.sh/uv/install.ps1 | iex # macOS/Linux curl -LsSf https://astral.sh/uv/install.sh | shInitialize a new project
uv init . |shInstall dependencies
uv add mcp-cliRun the MCP server
uv run mcp install main.pyIntegrate with Claude Desktop
Open Claude Desktop
Go to Settings > Developer > Edit Config
Add your MCP server using the generated uv command
Restart Claude
โจ Usage
Ask Claude things like:
"Add a note saying 'Meeting at 3 PM'"
"Read all my notes"
"Whatโs the latest note?"
"Summarize my notes"
๐งพ File Structure
๐ Tools and Concepts Used FastMCP
@mcp.tool โ For executable functions
@mcp.resource โ For context data (like latest notes)
@mcp.prompt โ Reusable prompts for AI agents
Claude Desktop integration
๐ง Ideas for Future Enhancements Multi-user note support
Add timestamps to notes
Search notes by keyword
AI-generated tags or categories