sticky-notes
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| STICKY_NOTES_FILE | No | Override the default file path used to store notes. |
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 | Append a note to the notes file. |
| read_notesA | Read every stored note. Returns ------- str All notes, newest last, or a message saying there are none. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
| note_summary_prompt | Ask the model to summarize all stored notes. |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
| latest_note | The most recently added note. Returns ------- str The last line of the notes file, or a message saying there are none. |
TDQS
Scored across 2 tools
The two tools have completely distinct purposes: one reads all notes and the other appends a note. There is no overlap or ambiguity between them.
Both tools follow the same lowercase verb_noun pattern: read_notes and add_note. The naming is simple, predictable, and consistent.
With only two tools, the server feels minimal but not unreasonable for a basic sticky-notes utility. However, it is on the thin side and offers little beyond append and read-all functionality.
The server supports creating and reading notes, but lacks update and delete operations, which are common expectations for a note-taking tool. Agents can work around this limitation only if no note modifications or removals are required.