Skip to main content
Glama

Remember note

remember

Save a short persistent note to your workspace for future recall. Use it to record what changed, next steps, or decisions after finishing work.

Instructions

Save a short persistent note for this workspace so any future chat can recover it with recall. Use it after finishing a chunk of work: record what changed, what should happen next, or a decision that must survive the conversation. Notes are append-only JSONL stored under /.workspace-mcp/ and are never edited or deleted by this tool. Keep each note short and self-contained; use tags for later filtering.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
tagsNoOptional short tags for recall filtering, for example ["todo", "phase-2"].
textYesNote text. One short, self-contained sentence or paragraph.
workspaceNoWorkspace name (see workspace_list). Defaults to the primary workspace.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.5.0

TDQS

A4.7/5.0
Behavior5/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

The description adds substantial behavioral detail beyond annotations: notes are 'append-only JSONL' stored under a specific path, and 'never edited or deleted by this tool'. This fully discloses persistence and mutation semantics, which is exactly the kind of context an agent needs.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Every sentence earns its place: purpose, use-case timing, persistence model, and authoring guidance. The most important information is front-loaded, and there is no redundant filler.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a simple create-note tool with rich annotations and full schema coverage, the description is complete: it explains why to call it, what to write, how data is stored, and how it will be retrieved later. Nothing essential for correct invocation is missing.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is already 100%, so the baseline is 3. The description adds meaningful usage semantics for text and tags ('short and self-contained', 'use tags for later filtering'), and clarifies the workspace-contextual nature of the note. It does not add detail about the workspace parameter, but the schema already covers that.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description uses a specific verb with a resource: 'Save a short persistent note for this workspace' and immediately ties it to recovery via 'recall', which distinguishes it from sibling tools like work_log or write_file. The purpose is unmistakable even before looking at the schema.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

It gives clear context for when to use this tool: 'after finishing a chunk of work', and what to record (changes, next steps, decisions). It names recall as the recovery mechanism, but does not explicitly state when not to use it or how it differs from work_log, so it falls just short of a 5.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.