AI Sticky Notes MCP Server
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@AI Sticky Notes MCP ServerAdd a note: remember to water the plants"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
AI Sticky Notes — MCP Server
A minimal Model Context Protocol (MCP) server that gives an AI assistant simple persistent "sticky notes" — the ability to save short notes to a local file and read them back later, across conversations.
What it exposes
The server (server.py) is built with fastmcp / mcp and exposes:
Tools
Tool | Description |
| Appends a new note to the sticky note file. Returns a confirmation string once saved. |
| Reads and returns all saved notes as a single string. Returns |
Resources
Resource | Description |
| Returns just the most recently added note. Returns |
Prompts
Prompt | Description |
| Generates a prompt asking the AI to summarize all current notes. Returns a message noting there's nothing to summarize if the notes file is empty. |
Notes are stored in a plain text file, notes.txt, in the same directory as server.py, with each note on its own line. The file is created automatically on first use.
Related MCP server: AI Sticky Notes
Project structure
MCPSerrver/
├── server.py # The MCP server: tools, resource, and prompt definitions
├── client.py # A standalone test client that exercises the server over stdio
├── notes.txt # Generated at runtime — stores the notes
├── pyproject.toml # Project metadata and dependencies
├── uv.lock # Locked dependency versions
└── .python-version # Pinned Python version for the projectRequirements
Python 3.13+
Dependencies (see
pyproject.toml):fastmcp>=2.14.1mcp[cli]>=2.0.0
Setup
Using uv (recommended, uses the committed lockfile):
git clone git@github.com:pallikop/MCPSerrver.git
cd MCPSerrver
uv syncOr with pip:
pip install fastmcp mcp[cli]Running the server
The server communicates over stdio, so it's designed to be launched by an MCP-compatible client (like Claude Desktop, Claude Code, or the included test client) rather than run standalone for interactive use:
python server.pyTesting with the included client
client.py is a small standalone script that connects to server.py over stdio and exercises every tool, resource, and prompt the server exposes:
python client.pyIt will:
List all available tools, resources, and prompts
Call
add_notewith a test messageCall
read_notesto confirm it was savedRead the
notes://latestresourceFetch the
note_summary_promptprompt
Connecting to an MCP client
To use this server with an MCP-compatible client (e.g. Claude Desktop), point the client's MCP server config at server.py, for example:
{
"mcpServers": {
"ai-sticky-notes": {
"command": "python",
"args": ["/path/to/MCPSerrver/server.py"]
}
}
}Notes on the current implementation
Notes are stored unencrypted in a local plain-text file (
notes.txt) — there's no authentication or multi-user separation.add_notealways appends; there's currently no way to delete or edit an individual note through the exposed tools.The notes file path is resolved relative to
server.py's own location, so it will always read/write in the same directory regardless of where the server is launched from.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- FlicenseAqualityDmaintenanceEnables AI assistants to manage a personal markdown-based knowledge base with natural language interactions. Supports creating, searching, updating, and organizing notes across categories like people, recipes, meetings, and procedures.Last updated111
- Flicense-qualityCmaintenanceEnables AI agents to create, read, and summarize sticky notes stored in a local text file through MCP tools, resources, and prompts.Last updated
- -license-quality-maintenanceA simple notes system that allows creating, storing, and accessing text notes through MCP resources and tools, with built-in prompt support for generating summaries of stored notes.Last updated
- Alicense-qualityDmaintenanceEnables AI assistants to save and recall information from files or free-form notes using natural language, acting as a long-term memory system.Last updatedMIT
Related MCP Connectors
Persistent memory and knowledge management for AI agents with semantic search and 50+ tools.
AI access to your aNotepad online notes: read, search, write, and organize via 22 tools.
Universal memory for AI agents and tools. Save, organize and search context anywhere.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/pallikop/MCPSerrver'
If you have feedback or need assistance with the MCP directory API, please join our Discord server