Skip to main content
Glama
mnemoverse

Mnemoverse Memory

memory_list_recent

Read-onlyIdempotent

Retrieve the newest saved memories first to resume work after a break. Pass a 'since' timestamp for only new entries, or a cursor to continue paging older results.

Instructions

List the NEWEST memories first — no search query needed. Semantic search answers 'what do I know about X'; this answers 'what happened lately': resuming work after a break, catching up on a shared room ('any new messages?'), or reviewing what was saved recently. Pass since (your last-seen time) to get only what's new, and page through older entries with the returned cursor. Complete by construction WITHIN ONE SCOPE — nothing is skipped there, unlike a semantic search. To catch up on a shared room you MUST pass its address as domain: rooms are separate stores and an unscoped call never covers them.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNoPage size (default: 20). Newest first.
sinceNoOnly entries created at/after this ISO-8601 instant (naive = UTC) — your novelty watermark.
untilNoOnly entries created at/before this ISO-8601 instant (inclusive). Pair with `since` to read a closed window — 'what happened on Monday' — instead of paging back from now.
cursorNoOpaque cursor from a previous page's 'More older entries exist' line — continues the listing without skips or duplicates.
domainNoRestrict to one domain. REQUIRED to read a shared room — pass its address ('xroom:room_01ABC'), because rooms are separate stores that an unscoped feed does NOT cover. Omit only when you mean your own domains. Room addresses come from memory_list_rooms.
exclude_authorNoDrop entries written by this author PRINCIPAL. ⚠️ NOT USABLE FROM HERE YET — the principal is never shown in these results, so there is no value you can get through this tool; a guess like 'me' filters nothing, silently. Same caveat as on memory_read.
Behavior5/5

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

Beyond the readOnly/openWorld/idempotent annotations, the description reveals useful behaviors: ordering (newest first), the existence of an opaque cursor for paging, the completeness guarantee within one scope, and that room domains are separate stores not covered by an unscoped call. This adds significant context the annotations do not cover.

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: the first states the core purpose, then a useful contrast with semantic search, followed by concrete usage hints for since/cursor, completeness, and domain requirements. It is compact (roughly 70 words) and front-loaded with the most important info.

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?

Given the tool complexity (6 params, no output schema), the description covers the key usage patterns: resuming work, catching up on rooms, using since/cursor, and domain scoping. It does not describe the return shape or fields, which would have been helpful since no output schema exists, but the context provided is largely sufficient for invocation.

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 100%, so baseline is 3. The description adds meaning for `since` (last-seen time to get only new), `cursor` (page through older entries), and `domain` (required for shared rooms), elevating it above baseline. It does not comment on `limit`, `until`, or `exclude_author`, but those are already well-described in the schema.

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 action and resource: 'List the NEWEST memories first'. It explicitly contrasts with semantic search ('this answers what happened lately') and clarifies no query is needed, distinguishing it clearly from sibling tools like memory_read and memory_list_rooms.

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 offers concrete use cases (resuming work, catching up on a shared room) and directly contrasts with semantic search. It also gives a hard rule: pass `domain` to cover rooms. However, it does not explicitly state when NOT to use this tool (e.g., for exact lookup vs memory_read), so it falls just short of perfect.

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

Install Server

Other Tools

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/mnemoverse/mcp-memory-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server