Skip to main content
Glama

Server Configuration

Describes the environment variables required to run the server.

NameRequiredDescriptionDefault

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

CapabilityDetails
tools
{
  "listChanged": false
}

Tools

Functions exposed to the LLM to take actions

NameDescription
handoff_initA

Initialize .handoff/ memory layout in a project (once per repo).

handoff_saveA

Save a long-task handoff pack into .handoff/. Prefer auto=true. Provide goal and up to 3 next_actions when possible. Never include API keys or tokens.

handoff_recallA

Load handoff context for a new session. Default brief=true returns a short resume brief (token-thrifty).

handoff_statusB

Show .handoff/ status, goal, and next actions.

handoff_memory_appendA

Append durable project memory, or show MEMORY.md if text is empty.

handoff_doctorB

Health-check .handoff/ and scan LATEST.md for possible secrets.

Prompts

Interactive templates invoked by user choice

NameDescription

No prompts

Resources

Contextual data attached and managed by the client

NameDescription

No resources

TDQS

A3.7/5.0

Scored across 6 tools

Disambiguation4/5

Each tool targets a distinct operation (init, save, recall, status, memory append, doctor), but recall and status both read project state, and memory_append has dual read/write behavior. Descriptions help clarify, but a minor overlap exists.

Naming Consistency4/5

All tools share the handoff_ prefix and use snake_case, but the command words vary in type: init/save/recall are verbs, while status and doctor are nouns, and memory_append is a compound. The style is consistent overall with minor deviations.

Tool Count5/5

Six tools is well-scoped for a handoff management server, covering setup, save, load, status, memory, and health check without being excessive or too thin.

Completeness4/5

The core lifecycle of handoff management is covered: init, save, recall, status, and health check. Missing operations like explicit delete or list of prior handoffs are minor and agents can work around them.

Maintenance

ActivitySlowing
ResponsivenessNo issues