Skip to main content
Glama
Rajwantmishra

agent-logbook

Server Configuration

Describes the environment variables required to run the server.

NameRequiredDescriptionDefault
DBNoPath to the SQLite database file.claude/logbook.db

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
recallA

Retrieve relevant long-term memories for the current task. Call this at the START of any task before doing work. Returns ranked memories (facts, decisions, open tasks/questions) within a token budget, plus a count of open items. query should be a few keywords describing the task.

rememberA

Persist ONE distilled memory after completing a work block. type is one of: fact, decision, task, question, note. content must be 1-2 sentences, self-contained, in past/declarative form (a distillation — never a raw transcript). entity is a short slug for what it concerns (e.g. 'auth', 'db-choice'). If a live memory already exists for the same type+entity, this returns a CONFLICT without writing — then either supersede(old_id,...) to update it, ask the user which stands, or retry with force=true to keep both.

supersedeA

Replace an outdated memory with an updated one. The old memory is kept in the chain for history (never deleted). Use this when a decision or fact has changed.

list_openB

List open tasks and questions (optionally filter by type: 'task' or 'question'). Call when planning what to do next.

set_statusB

Mark a task/question as 'done' or 'dropped' (or reopen with 'open').

memory_historyB

Show the full supersession chain for a memory — how a fact/decision evolved over time. Useful for 'why did we think X before?' questions.

memory_statsA

Counts of total/live memories and open items. Cheap health check. Also reports token-usage metrics: recall_count, avg_tokens_per_recall, total_tokens_served (lifetime tokens returned by recall), live_corpus_tokens (estimated tokens across all live memories), and savings_ratio (live_corpus_tokens / avg_tokens_per_recall — roughly how many recalls it would take to read the whole corpus instead of a budgeted slice; null if no recalls have happened yet).

Prompts

Interactive templates invoked by user choice

NameDescription

No prompts

Resources

Contextual data attached and managed by the client

NameDescription

No resources

TDQS

A3.6/5.0

Scored across 7 tools

Disambiguation5/5

Each tool has a clearly distinct purpose: listing open items, showing memory history, stats, recalling, remembering, setting status, and superseding. No two tools overlap in functionality.

Naming Consistency2/5

Names are inconsistent: some are verb_noun (list_open, set_status), some are noun_noun (memory_history, memory_stats), and others are single verbs (recall, remember, supersede). No uniform pattern.

Tool Count5/5

Seven tools is an appropriate number for a memory/logbook system. Each tool handles a distinct operation without being too many or too few.

Completeness4/5

The tool set covers creation, retrieval, update (via supersede and set_status), and history for memories. Missing explicit deletion or a way to list all memories, but these gaps are minor for the intended purpose.