Sticky Notes MCP Server
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": false
} |
| prompts | {
"listChanged": false
} |
| resources | {
"subscribe": false,
"listChanged": false
} |
| experimental | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| add_noteA | |
| read_notesA | |
| save_to_new_fileB | |
| delete_notesA | |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
| note_summary_prompt | Generate a prompt asking the AI to summarize all current notes. Returns: str: A prompt string that includes all notes and asks for a summary. If no notes exist, a message will be shown indicating that. |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
| get_latest_note | Get the most recently added note from the sticky note file. Returns: str: The last note entry. If no notes exist, a default message is returned. |
TDQS
Scored across 4 tools
Each tool serves a clearly distinct purpose: adding to the note file, reading all notes, creating a new notes file, and deleting all notes. No two tools perform the same action, so an agent can confidently select the right one.
Tool names follow a mostly consistent verb-noun pattern (add_note, read_notes, delete_notes). The exception is save_to_new_file, which has a more complex verb-phrase structure, but it still uses the same snake_case style and starts with a verb, so the overall pattern remains readable.
Four tools is well-scoped for a sticky notes server: one to add, one to read, one to delete, and one to save to a new file. Each tool earns its place without unnecessary bloat.
The set is missing essential operations for managing individual notes. There is no way to update a specific note or delete a single note, forcing users to delete all notes and re-add the ones they want to keep. This is a significant gap for a note-taking tool.