Skip to main content
Glama
cuemap-dev

CueMap MCP Server

Official
by cuemap-dev

cuemap_memory_reinforce

Reinforce a stored memory in CueMap to strengthen recall, optionally targeting specific cue pathways for improved retrieval.

Instructions

Reinforce one CueMap memory, optionally along specific cue pathways.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
cuesNo
projectNoOptional project ID. Defaults to the repository-scoped project.
memory_idYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.7.4

TDQS

C2.9/5.0
Behavior2/5

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

No annotations exist, so the description is the only source of behavioral information. It reveals that the operation targets one memory and can follow specific cue pathways, but it does not state whether the operation mutates stored memory, whether it is idempotent, or what side effects or failures may occur.

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?

One sentence with no filler or repetition; the key action and scope are front-loaded. It is efficiently written, though the brevity contributes to ambiguity that is penalized in other dimensions.

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?

For a tool with no annotations and no output schema, the description is too thin: it omits return value, side effects, and any guidance on required versus optional inputs beyond the schema. An agent cannot tell what 'reinforce' will actually do or what a successful call returns.

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 low (33%); only `project` has a description. The phrase 'along specific cue pathways' clarifies that `cues` selects pathways, and `memory_id` is inferable, but the description does not explain the exact semantics or constraints for the cues array or the effect of omitting it.

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?

Uses a specific verb ('reinforce') and resource ('one CueMap memory'), and the optional 'cue pathways' qualifier gives it a recognizable scope. It is distinguishable from siblings like cuemap_memory_get/delete, though 'reinforce' is domain jargon and not precisely defined.

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?

No when-to-use, prerequisites, or alternatives are mentioned; the description only states the action. The intended context must be inferred from the tool name and sibling set, so guidance is effectively absent.

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