AI-Sticky-Notes-MCP-Server
0
AI Sticky Notes is a Model Context Protocol server designed for managing and summarizing sticky notes. It allows users to add, read, and fetch the latest notes using a simple server deployed with MCP framework tools.
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