Skip to main content
Glama

palinode_forget_withdraw

DestructiveIdempotent

Withdraw a forget request to restore archived memories, un-retract mentions, and archive the request record. Every step is an audited commit with per-target failure reporting.

Instructions

Take a forget request back. Given the memory that holds the request ('please forget that I…'), restores every memory it archived, un-strikes every mention it retracted, and archives the request record(s) so they stop acting as the retraction. Each step is its own audited commit; failures are reported per target.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
reasonNoWhy the request is being withdrawn (kept in the audit trail).
file_pathYesPath of the memory holding the forget request (e.g., 'insights/forget-sneakers.md')

Schema Changelog

Changes observed during successful MCP inspections.

  1. Addedv0.17.0

TDQS

A4.5/5.0
Behavior5/5

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

Annotations already declare destructiveHint=true and idempotentHint=true, but the description goes well beyond them by stating exactly what gets restored, un-struck, and archived, plus per-step audited commits and per-target failure reporting. This gives the agent a strong mental model of the operation's side effects.

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?

Two dense, front-loaded sentences: the first gives a plain-language summary, the second enumerates exact effects and operational guarantees. There is no filler, and every phrase contributes to invocation confidence.

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?

For a moderately complex destructive mutation with no output schema, the description covers scope, side effects, commit behavior, and error reporting. Nothing essential is missing for an agent deciding whether and how to invoke the tool.

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 the description does not need to compensate for undocumented parameters. It reinforces that file_path points to the memory holding the request and that reason feeds the audit trail, but it adds little beyond what the schema already says.

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 begins with a clear verb and resource: 'Take a forget request back,' then spells out the concrete effects (restoring archived memories, un-striking retracted mentions, archiving request records). This is specific enough to distinguish it from siblings like palinode_rollback or palinode_unretract, which target different reversal operations.

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 makes the trigger condition obvious: use this when a previously filed 'please forget that…' request must be withdrawn, and identify the memory file that holds it. It does not explicitly mention when not to use it or contrast it with nearby siblings, but the usage context is clear and actionable.

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