Skip to main content
Glama
Pseudogiant-xr

PseudoLife-MCP

Official

memory_reinforce

Strengthen a specific memory entry after reading it to improve long-term retention. Reinforce genuinely useful memories so they resist forgetting.

Instructions

Strengthen one memory after reading it via memory_get and finding it genuinely useful — a deliberate "this mattered" signal that helps it resist forgetting. Read first, then reinforce.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
entry_idYesThe id of the memory to strengthen.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed1 schema field changedv0.15.0
    • addedInput schema / properties / entry_id / description
      Added value: +"The id of the memory to strengthen."
  2. First observedv0.11.0

TDQS

A3.9/5.0
Behavior3/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 explains the behavior and effect (strengthening, resisting forgetting) and the required sequence. However, it does not disclose error behavior, idempotency, or whether repeated reinforcement has cumulative effects, which leaves some uncertainty.

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?

The description is two sentences, front-loaded with the core purpose and no unnecessary fluff. The closing 'Read first, then reinforce' slightly restates an earlier point, but it emphasizes the important ordering rule and keeps the whole description tight.

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?

For a single-parameter tool with an output schema present, the description provides the essential purpose, the precondition, and the behavioral effect. It could mention edge cases like invalid entry_id or repeated calls, but nothing critical is missing for an agent deciding whether and how to use it.

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 coverage is 100%: the single parameter entry_id is already described as 'The id of the memory to strengthen.' The description adds the hint that the id likely comes from memory_get, but this is minor and the schema does the heavy lifting, 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 clearly states the specific action ('Strengthen one memory'), the precondition ('after reading it via memory_get'), and the intent ('this mattered' signal that helps resist forgetting). This differentiates it from siblings like memory_get, memory_search, memory_store, and memory_forget.

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?

It explicitly says when to use the tool: after reading the memory via memory_get and finding it genuinely useful. The instruction 'Read first, then reinforce' provides a clear ordering rule. It doesn't spell out exclusions, but the precondition gives strong guidance.

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