Skip to main content
Glama

remember

Save a new note to an agent's memory and return the memory ID. Use pinned to protect important notes from automatic eviction when the memory cap is reached.

Instructions

Save a new note to this agent's memory. Returns the new memory's id. Always inserts - calling this twice with the same text creates two separate memories, since this server doesn't have deduplication enabled by default.

If the server was configured with a memory cap (max_memories), the oldest unpinned memory may be evicted to make room for this one. pinned=True exempts a memory from that eviction permanently - there's no way to un-pin it later through this tool.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
textYesThe note to remember, in plain text.
pinnedNoIf true, exempt this memory from automatic eviction under max_memories, even once it's no longer among the most recent.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes
Behavior5/5

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

The description goes well beyond annotations by disclosing non-idempotency (calling twice creates two memories), eviction behavior under max_memories, and the permanent nature of pinning with no unpin mechanism. These are valuable behavioral traits not evident from the annotation hints.

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 moderately sized but every sentence contributes meaningful information: purpose, return value, dedup behavior, eviction, and pinning permanence. It is front-loaded with the action and result, making it efficient and well-structured.

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?

Given the presence of an output schema and detailed parameter schema, the description covers all necessary behavioral edge cases and context: return id, duplicate creation, eviction, and pinning. No important gaps are evident.

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?

The schema already provides thorough descriptions for both text and pinned, so the baseline is 3. The description adds extra semantics by explaining the permanent effect of pinned=True and that no unpinning is possible later, which is not fully explicit in the schema. This elevates it to 4.

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 the verb 'Save' and resource 'a new note to this agent's memory', and explicitly notes that it always inserts, returning the new memory's id. This distinguishes it from sibling read tools like search and recall.

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 clear context about when to use the tool (saving notes) and behavior to expect (always inserts, no deduplication, possible eviction), but it does not explicitly name alternatives or say 'use this instead of search/recall'. The context is sufficient to infer appropriate use relative to siblings.

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/SRock44/rmbr'

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