Skip to main content
Glama

agent_remember

Record key-value notes in encrypted agent memory that persist across sessions. Use to store deployment preferences, rotation dates, or decisions from earlier sessions.

Instructions

[agent] Persist a non-secret key/value note in encrypted, on-disk agent memory that survives across MCP sessions. Use to record stable agent context — last rotation date for a key, the user's deployment preferences, decisions taken in earlier sessions; do NOT use this to store secrets (use set_secret instead) and prefer chat scratchpad for purely transient state. Mutates the encrypted memory store. Idempotent: rewriting the same key with a new value simply overwrites. Returns 'Remembered "KEY"' on success.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
keyYesMemory key (free-form string). Convention: lowercase dotted namespaces, e.g. 'project.lastDeploy'.
valueYesPlain-string value to store. JSON-stringify structured data on the caller side if needed.
Behavior4/5

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

Discloses mutation, idempotency, and return value format. With no annotations, the description covers key behavioral traits, though it could mention failure modes or rate limits. Still, it is above average.

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 efficient sentences: first states purpose and persistence, second gives usage guidance, third covers behavior and idempotency. No wasted words.

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 simple tool with 2 fully-described parameters and no output schema, the description covers purpose, usage, behavior, parameter conventions, and return value. Sufficient for effective invocation.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters5/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Adds meaning beyond schema: suggests naming convention for keys (lowercase dotted namespaces) and advises JSON-stringifying structured values. This is valuable guidance for correct usage.

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 (persist) and resource (non-secret key/value note in encrypted, on-disk agent memory). It also distinguishes from siblings by explicitly warning against using for secrets (use set_secret) and transient state (use chat scratchpad).

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?

Provides explicit when-to-use examples (recording stable agent context) and when-not-to-use (secrets, transient state) with named alternatives (set_secret, chat scratchpad).

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/I4cTime/quantum_ring'

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