MCP-Server-StickyNotes

emmamannan/MCP-Server-StickyNotes

3.2

If you are the rightful owner of MCP-Server-StickyNotes and would like to certify it and/or have it hosted online, please leave a comment on the right or send an email to dayong@mcphub.com.

The AI Sticky Notes MCP Server is a lightweight backend system that allows MCP-enabled clients to manage and interact with a simple sticky notes system.

Tools
2
Resources
0
Prompts
0

🗒️ AI Sticky Notes — MCP Server

A lightweight Model Context Protocol (MCP) server that exposes a simple “sticky notes” system through tools, resources, and prompts.
This server demonstrates how to build an MCP-compatible backend using FastMCP, enabling any MCP-enabled client (LLMs, agents, RAG systems) to read, write, and summarize notes.


🚀 Features

This MCP server provides four main capabilities:

🧰 Tools

ToolDescription
add_note(message: str)Appends a new note to notes.txt
read_notes()Returns all notes as a single text block

📦 Resources

ResourceURIDescription
get_latest_note()notes://latestReturns the most recently added note

💬 Prompts

PromptDescription
note_summary_prompt()Returns a ready-to-use prompt instructing an AI to summarize all notes

📂 How It Works

The server stores notes in a local text file. All interactions, adding notes, reading them, getting the latest note, and generating an AI summary prompt, are routed through the MCP server.