Skip to main content
Glama

Server Configuration

Describes the environment variables required to run the server.

NameRequiredDescriptionDefault
STICKY_NOTES_FILENoOverride 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

CapabilityDetails
tools
{
  "listChanged": false
}
prompts
{
  "listChanged": false
}
resources
{
  "subscribe": false,
  "listChanged": false
}
experimental
{}

Tools

Functions exposed to the LLM to take actions

NameDescription
add_noteA

Append a note to the notes file.

Parameters
----------
message : str
    The note to append.

Returns
-------
str
    Confirmation that the note was stored.
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

NameDescription
note_summary_promptAsk the model to summarize all stored notes.

Resources

Contextual data attached and managed by the client

NameDescription
latest_noteThe most recently added note. Returns ------- str The last line of the notes file, or a message saying there are none.

TDQS

A4.1/5.0

Scored across 2 tools

Disambiguation5/5

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.

Naming Consistency5/5

Both tools follow the same lowercase verb_noun pattern: read_notes and add_note. The naming is simple, predictable, and consistent.

Tool Count3/5

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.

Completeness3/5

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.

Maintenance

ActivityMaintained
ResponsivenessNo issues