Skip to main content
Glama

List Recent Memories

recent_memories
Read-onlyIdempotent

Retrieve the most recently recorded memories for a namespace to re-orient at session startup.

Use at the beginning of a conversation or task to discover recent context, active objectives, or latest user facts recorded in this namespace.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNoMaximum number of recent memories to return (default: 5, ceiling: 50).
namespaceYesStorage namespace to inspect (e.g., 'user_123_pref', 'agent_project_alpha').

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

TDQS

A4/5.0
Behavior3/5

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

Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, so the safety profile is established. The description adds the ordering notion of 'most recently recorded' and the session-startup context, but doesn't disclose behavior such as pagination, chronological order guarantees, or namespace absence handling. With rich annotations, this is adequate but not exceptional.

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?

Two brief sentences with the core purpose front-loaded in the first sentence and usage context in the second. No filler or redundant schema repetition.

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

Completeness4/5

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

For a simple read-only tool with 2 documented params and an output schema, the description covers what the tool does, when to use it, and what kind of content to expect. It stops short of explicitly routing to recall/remember for non-recent or specific lookups, leaving a small completeness gap.

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%; the schema already documents namespace examples and limit default/ceiling. The description only restates 'for a namespace' and adds no new parameter semantics beyond the structured data.

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?

States a specific verb ('Retrieve'), a specific resource ('most recently recorded memories'), and a namespace scope, and pairs it with a clear purpose ('re-orient at session startup'). This differentiates it from sibling tools like recall (targeted lookup) and remember (write) even without naming them.

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?

Explicitly says when to use: 'at the beginning of a conversation or task' and what it surfaces ('recent context, active objectives, or latest user facts'). It lacks when-not-to-use or named alternatives, so not a 5.

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