Skip to main content
Glama

Server Configuration

Describes the environment variables required to run the server.

NameRequiredDescriptionDefault
QUICKMEMO_STORAGENoCustom storage path for the memos file. Defaults to ~/.quickmemo/memos.json if not set.~/.quickmemo/memos.json

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_memoA

Save a new context memo, snippet, or idea with optional category and tags.

list_memosA

List saved memos with optional category and tag filtering.

get_memoA

Retrieve the full details and content of a specific memo by ID.

search_memosA

Search memos by keyword across title, content, tags, and category.

delete_memoA

Delete a specific memo by ID.

clear_memosA

Clear all stored memos (use with caution).

Prompts

Interactive templates invoked by user choice

NameDescription
review_notesGenerate a synthesis, key takeaways, and action items from saved memos.
daily_standupGenerate a structured daily standup update from today's context memos.

Resources

Contextual data attached and managed by the client

NameDescription
get_all_memos_resourceDynamic markdown digest of all stored memos.
get_memo_stats_resourceReal-time statistics and summary metrics for QuickMemo.

TDQS

A4/5.0

Scored across 6 tools

Disambiguation5/5

Each tool has a clearly distinct purpose: create, list, get, search, delete, and clear. No two tools overlap in functionality, so an agent can easily select the correct one.

Naming Consistency5/5

All tool names follow the verb_noun pattern consistently (add_memo, list_memos, get_memo, search_memos, delete_memo, clear_memos). The naming is uniformly snake_case with clear verbs and a common noun.

Tool Count5/5

Six tools is well-scoped for a memo management server. Each tool covers a core operation without being excessive or too sparse.

Completeness4/5

The tool surface covers create, read (list/get/search), and delete (single and all). The only noticeable gap is the lack of an update or edit operation, which could be a minor limitation but does not interrupt the main workflow.

Maintenance

ActivityMaintained
ResponsivenessNo issues