Skip to main content
Glama

Store a memory (persists across sessions within your workspace)

remember

Persist a durable memory: an architecture decision, a stable user preference, a verified bug fix, or an important discovery. The free beta provides a bounded per-caller/workspace memory pool; no personal API key is required. Do not store secrets or raw logs. Example — tools/call remember {"content":"Deploy key rotates monthly"}

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
kindNoCategory; default "note".
contentYesThe memory itself, self-contained (≤2000 chars).
projectNoOptional project name to scope recall later.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

TDQS

A4.3/5.0
Behavior4/5

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

Annotations already mark this as a non-read-only, non-idempotent write, and the description adds meaningful context: memories persist across sessions, the free beta has a bounded per-caller/workspace pool, no API key is required, and secrets/logs are prohibited. This exceeds what the structured annotations convey.

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?

The description is efficiently front-loaded with purpose, followed by resource and policy context, and includes a concrete example in four short sentences. Every sentence adds value and there is no padding.

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 one-required-parameter write tool, the description covers purpose, appropriate content, persistence behavior, resource bounds, auth requirements, and exclusions. An output schema exists, so return values do not need to be described.

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%, so the schema fully documents content, kind, and project. The description adds an example using content but does not materially enrich the parameter semantics beyond the schema, so baseline 3 is appropriate.

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 and resource: 'Persist a durable memory' and enumerates concrete use cases like architecture decisions, preferences, bug fixes, and discoveries. Although siblings are not named, the store operation is clearly distinct from forget/recall, eliminating ambiguity.

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 explicit when-to-use criteria via the listed memory categories and a clear when-not-to-use rule: 'Do not store secrets or raw logs.' It does not explicitly compare against the sibling tools (forget/recall), but context makes the intended usage clear.

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.3/5.0
Disambiguation5/5

The four tools are role-distinct: remember writes, recall reads, forget deletes, and what_can_you_do is a discovery/help tool rather than a memory operation. No two tools could plausibly be selected for the same task.

Naming Consistency4/5

The three core memory operations follow a clear single-verb lowercase pattern (remember/recall/forget). The helper what_can_you_do breaks that pattern, but the divergence is obvious and unlikely to mislead.

Tool Count4/5

Four tools is a reasonable size for a small memory service: the three core operations plus one discovery helper. The count could feel slightly thin, but every included tool has a distinct function.

Completeness4/5

The memory lifecycle is covered for the most part: durable facts can be stored, retrieved, and permanently deleted. The main gap is the lack of an update/edit operation, though forget-and-remember is a viable workaround.