AI-Sticky-Notes-MCP-Server
If you are the rightful owner of AI-Sticky-Notes-MCP-Server and would like to certify it and/or have it hosted online, please leave a comment on the right or send an email to henry@mcphub.com.
AI Sticky Notes MCP Server is a basic implementation of a Model Context Protocol server for managing sticky notes.
AI Sticky Notes MCP Server
Project Overview
This project is a basic implementation of an MCP (Model Context Protocol) server named "AI Sticky Notes." It allows users to manage sticky notes by adding, reading, and summarizing them. The server is built using the FastMCP
from MCP
framework.
Features
- Add Notes: Append new notes to a file.
- Read Notes: Retrieve all stored notes.
- Get Latest Note: Fetch the most recent note.
- Summarize Notes: Generate a prompt summarizing all notes.
Project Structure
- main.py: Contains the server logic and tools for managing notes.
- notes.txt: Stores all the sticky notes.
- pyproject.toml: Configuration file for managing dependencies and project metadata.
Prerequisites
- Python 3.11 or higher
- Virtual environment setup
Setup Instructions
-
Clone the repository:
git clone https://github.com/crman/AI-Sticky-Notes-MCP-Server.git cd AI-Sticky-Notes-MCP-Server
-
Create and activate a virtual environment:
python -m venv .venv .venv\Scripts\activate # On Windows
-
Install dependencies using
uv
:uv sync
Running the Server
To start the MCP server using uv
, run the following command:
uv run mcp install main.py