Skip to main content
Glama

reset_memory

Restore associative memory and synaptic weights to baseline after confirmation, optionally creating a backup first.

Instructions

Resets or prunes the synaptic weights and associative memory back to baseline.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
backupNoWhether to create a backup file before resetting.
confirmYesMust be set to true to confirm reset.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

C2.9/5.0
Behavior2/5

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

With no annotations, the description carries the full burden and does not meet it. It implies destruction ('resets or prunes... back to baseline') but never states that existing memory is destroyed, whether the operation is reversible, or how a backup interacts with the reset, leaving the agent to infer the safety profile from the schema alone.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

A single tight sentence with the action front-loaded and no filler. It is efficient, though the mixed jargon 'synaptic weights' versus 'associative memory' is slightly redundant rather than clarifying.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

This is a destructive mutation tool with no annotations, no output schema, and no usage guidance. An agent cannot tell from the description what exactly is lost, whether the reset is reversible, or when this should be preferred over inspecting memory first.

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%, so both 'confirm' and 'backup' are already documented in the schema, which sets the baseline at 3. The description adds no syntax, default, or consequence detail beyond what the schema provides.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

States a concrete action on a concrete resource: resets/prunes synaptic weights and associative memory to baseline. The verb pair 'resets or prunes' is slightly hedged, and nothing distinguishes it from siblings like inspect_memory_state or query_associative_memory, so it stops short of a 5.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

There is no statement of when to reset versus inspect or query memory, no prerequisites, and no named alternative among the four sibling tools. The only usage signal is the required 'confirm' flag in the schema, which the description never explains.

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