Sticky Notes
AI Sticky Notes MCP Server
Un servidor MCP que permite a un asistente de IA guardar, leer y resumir notas personales. Las notas se almacenan en un archivo local notes.txt junto al servidor.
Características
add_noteherramienta: Añade una nota nueva.read_notesherramienta: Lee todas las notas guardadas.notes://latestrecurso: Recupera la nota añadida más reciente.note_summary_promptprompt: Crea un prompt que contiene las notas actuales para resumirlas.
Related MCP server: Sticky Notes MCP Server
Requisitos
Python 3.12 o posterior
pipo uv
Ejecutar localmente
Usando uv
uv sync
uv run python main.pyUsando pip
Crea y activa un entorno virtual y, a continuación, instala la dependencia:
python -m venv .venv
.venv\Scripts\Activate.ps1
pip install -r requirements.txt
python main.pyEl servidor se comunica mediante MCP stdio, por lo que normalmente lo inicia un cliente compatible con MCP en lugar de abrirse directamente en un navegador.
Probar el servidor
Con la CLI de MCP instalada, inicia MCP Inspector con:
mcp dev main.pyUsa Inspector para llamar a add_note, read_notes, abrir el recurso notes://latest y ejecutar note_summary_prompt.
También puedes verificar directamente el módulo de Python y su sintaxis:
uv run python -c "import main; print('MCP server import ok')"
uv run python -m py_compile main.pyDesplegar con Smithery
El repositorio incluye smithery.yaml, que configura Smithery para iniciar el servidor con:
startCommand:
type: stdio
command: python
args: ["main.py"]Sube los archivos de despliegue a un repositorio de GitHub y despliega ese repositorio a través de Smithery. Los archivos importantes son:
main.pyrequirements.txtsmithery.yaml
notes.txt es opcional porque el servidor lo crea automáticamente cuando es necesario. Inclúyelo solo si quieres distribuir las notas de ejemplo.
Ejecutar con Docker
Construye la imagen incluida y ejecútala:
docker build -t ai-sticky-notes .
docker run --rm -i ai-sticky-notesEstructura del proyecto
main.py MCP server implementation
requirements.txt Python dependencies
smithery.yaml Smithery stdio startup configuration
Dockerfile Container build configuration
notes.txt Local note storage, created automatically if absentNota de almacenamiento
Las notas se almacenan en un archivo de texto plano. Esto es adecuado para uso local y demostraciones, pero los contenedores alojados pueden no conservar el archivo entre reinicios o nuevas implementaciones. Para un almacenamiento duradero en producción, conviene usar una base de datos externa o un volumen persistente.
This server cannot be installed
Maintenance
Related MCP Servers
- FlicenseNot gradedqualityDmaintenanceEnables AI agents to create, read, and summarize sticky notes stored in a local text file through MCP tools, resources, and prompts.
- AlicenseAqualityDmaintenanceEnables creating, reading, updating, and deleting sticky notes with persistent text file storage through the MCP protocol.4MIT
- AlicenseAqualityBmaintenancePersistent sticky notes for Claude Code. You pin a note — a decision, a blocker, a todo — and it survives session resets, /clear, and closing the terminal. Next time you open Claude in that project, the notes that still matter are handed back to it automatically.33021MIT
- FlicenseNot gradedqualityCmaintenanceEnables AI assistants to save and retrieve persistent sticky notes across conversations, with tools, a resource, and a prompt for note management and summarization.
Related MCP Connectors
Cross-session, cross-device memory for your agent: remember and recall notes. No key to start.
Feedback layer for video. Reviewers talk through feedback; agents read it as structured comments.
Search, save, and set reminders in your personal MarkIt library of links, posts, and notes.
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/Sheheryar-Ahmad/Sticky-Notes-MCP'
If you have feedback or need assistance with the MCP directory API, please join our Discord server