Skip to main content
Glama

Remember Fact

remember

Store a durable fact, preference, or decision into persistent memory across sessions.

Use when you discover an important user preference, key background detail, architecture choice, or durable fact that must be recalled in future sessions. Do NOT use for storing entire conversation logs or transient temporary state.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
textYesDurable fact, preference, decision, or memory to store. Store key facts for future sessions; do NOT store raw full chat transcripts.
metadataNoOptional structured key-value metadata to attach to this memory (e.g., {'category': 'user_preference', 'source': 'onboarding'}).
namespaceYesIsolated storage namespace for the agent or user (e.g., 'user_123_pref', 'agent_project_alpha'). Must be 1-64 alphanumeric characters, hyphens, underscores, or dots.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

TDQS

A4.5/5.0
Behavior4/5

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

Annotations already provide readOnlyHint=false, idempotentHint=false, and destructiveHint=false. The description adds useful behavioral context beyond those: this persists across sessions and is meant for durable facts rather than ephemeral or transcript-style data. It does not detail duplicate-handling or overwrite behavior, but the idempotency annotation partially covers that.

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?

Three sentences, each earning its place: the core behavior, the when-to-use guidance, and the explicit anti-pattern. The most important information is front-loaded in the first sentence.

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 3-parameter write tool with a rich schema and an output schema present, the description provides complete selection and usage context. Nothing essential is missing for an agent to decide whether and how to invoke it.

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

Parameters3/5

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

Schema description coverage is 100%, and each parameter (text, metadata, namespace) has a detailed description including namespace format constraints and metadata examples. The description itself adds no parameter-level semantics, so the baseline 3 is appropriate: the schema carries the burden, and the description does not need to compensate.

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 opens with a specific verb and resource: 'Store a durable fact, preference, or decision into persistent memory across sessions.' It clearly differentiates from sibling read tools like recall and recent_memories by framing this as the write operation for durable knowledge.

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

Usage Guidelines5/5

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

It gives explicit positive guidance ('Use when you discover an important user preference, key background detail, architecture choice, or durable fact') and explicit negative guidance ('Do NOT use for storing entire conversation logs or transient temporary state'). This strongly steers an agent toward correct selection even without naming sibling alternatives.

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

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A4.1/5.0
Disambiguation5/5

Each tool has a clearly distinct purpose: remember stores, recall searches semantically, recent_memories lists by recency, and check_memory_service monitors health. There is no meaningful overlap between the retrieval tools because one is query-driven and the other is time-driven.

Naming Consistency2/5

Naming is inconsistent: remember and recall are bare verbs, recent_memories is a noun phrase, and check_memory_service uses a verb_noun pattern. A more consistent set would use e.g. remember, recall, list_recent_memories, check_service_health.

Tool Count5/5

Four tools is well-scoped for a persistent memory service. Each tool covers a distinct, necessary operation without redundancy or bloat.

Completeness3/5

The core create/read and health-check operations are present, but there is no update or delete tool for managing stored memories. This creates a notable lifecycle gap, especially for correcting or removing outdated facts.

Resources