Skip to main content
Glama

Memory Get

memory_get

Retrieve a user's complete stored memory, including summaries and the full fact list, for inspection, export, or debugging.

Instructions

Return the complete stored memory document for a user.

Prefer memory_search or memory_context for normal use; this returns everything (summaries plus the full fact list) and is intended for inspection, export or debugging.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
user_idNoWhose memory to return.
agent_nameNoOptional per-agent bucket.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4.4/5.0
Behavior4/5

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

No annotations are provided, so the description carries the full burden. It discloses that the tool returns 'everything (summaries plus the full fact list)' and is intended for inspection/export/debugging, which implies a heavier payload. It does not explicitly state it is read-only or mention performance implications, but given the tool name and the intended use cases, this is a minor gap.

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 two sentences with zero waste. The first sentence states the purpose, the second gives usage guidance. Information is front-loaded and efficiently organized.

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?

An output schema is present, so return format is covered. Parameters are fully documented. The description covers purpose and usage clearly. Minor missing details like error handling or behavior when no memory exists are not critical given the output schema and simple tool nature.

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% – both parameters (user_id, agent_name) have descriptions. The tool description adds no additional parameter semantics beyond what the schema provides, so the baseline of 3 applies.

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 states a specific verb ('return') and resource ('complete stored memory document for a user'), and explicitly distinguishes it from siblings by naming memory_search and memory_context as alternatives. An agent can immediately understand what it does and how it differs.

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 explicitly states when to use the tool ('inspection, export or debugging') and when not to ('normal use'), and names the preferred alternatives (memory_search, memory_context). This leaves no ambiguity about selection.

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