Skip to main content
Glama
Pseudogiant-xr

PseudoLife-MCP

Official

memory_recent

Retrieve the most recently stored memories in timestamp order to see what was just saved and catch up at session start. Filter by source, episode, or tags.

Instructions

List the N most recently stored memories, newest first — timestamp order, not relevance. Useful for "what did I just store?" and for catching up at the start of a session. The sources/episodes/ tags filters AND-combine.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nNoHow many entries to return.
tagsNoKeep only entries carrying one of these tags.
sourcesNoKeep only entries with one of these source tags.
verboseNoFull per-entry metadata; default entries are compact.
episodesNoKeep only entries stamped with one of these episode ids.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed5 schema fields changedv0.15.0
    • addedInput schema / properties / episodes / description
      Added value: +"Keep only entries stamped with one of these episode ids."
    • addedInput schema / properties / n / description
      Added value: +"How many entries to return."
    • addedInput schema / properties / sources / description
      Added value: +"Keep only entries with one of these source tags."
    • addedInput schema / properties / tags / description
      Added value: +"Keep only entries carrying one of these tags."
    • addedInput schema / properties / verbose / description
      Added value: +"Full per-entry metadata; default entries are compact."
  2. First observedv0.11.0

TDQS

A4.5/5.0
Behavior4/5

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

With no annotations, the description carries the behavioral disclosure burden. It reveals key behaviors: newest-first ordering, timestamp-based rather than relevance-based ordering, and AND-combination of filters. It does not describe return-value details, but an output schema exists to cover 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 tightly written sentences with no filler: behavior first, use cases second, filter semantics last. Every sentence contributes information an agent needs.

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 an optional-parameter list tool, this is complete: it gives use cases, ordering semantics, and filter combination behavior. All parameters are self-documented in the schema, and an output schema exists for return-value details.

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 description coverage is 100%, so the baseline is 3. The description adds value beyond the schema by clarifying that sources, episodes, and tags AND-combine, and by establishing the ordering semantics that affect how the n parameter is interpreted.

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 clearly states a specific verb and resource: 'List the N most recently stored memories, newest first.' It also distinguishes itself from relevance-based search by explicitly saying 'timestamp order, not relevance,' which separates it from sibling tools like memory_search.

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?

The description gives concrete use cases: 'what did I just store?' and catching up at the start of a session. It does not explicitly name an alternative tool for relevance search, but 'not relevance' implies the contrast, so the guidance is clear but not fully explicit.

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