Skip to main content
Glama
memorysyncio

MemorySync Cursor Starter

Official

List recorded decisions and contradictions

memorysync_decisions
Read-only

Retrieve past decisions and conflicting memories to surface superseded choices before proposing architectural changes.

Instructions

Return memories that record decisions, along with any that contradict each other, so a superseded choice is visible rather than silently competing with the current one. Call this before proposing an architectural change, to check whether the question was already settled and why. This surfaces conflict between stored facts; memorysync_search returns matches without telling you when two of them disagree.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
kNoMaximum decisions to return. Defaults to 10 if omitted.
queryNoOptional topic filter, for example 'caching'. Omit to list recent decisions across all areas.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
decisionsNoRecorded decisions, newest first.

Schema Changelog

Changes observed during successful MCP inspections.

  1. Addedv1.0.3

TDQS

A4.5/5.0
Behavior4/5

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

Annotations already provide readOnlyHint=true and openWorldHint=true, so the safety profile is covered. The description adds useful behavioral context: it surfaces contradictions and intentionally makes superseded choices visible. It does not go into output details, but an output schema exists, so those details are not required here.

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 sentences with no waste: the first states the core function, the second gives the use case, and the third differentiates from the sibling. The most important guidance is front-loaded.

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 read-only tool with zero required parameters, a full output schema, and a clear choice-when condition, the description is complete. Nothing an agent needs to decide whether and when to call it is missing.

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?

Input schema description coverage is 100%: both k and query already have meaningful descriptions. The description's 'caching' example adds a minor illustration but no real semantic lift beyond the schema, 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?

States a specific verb ('Return') and resource ('memories that record decisions, along with contradictions'), and clearly differentiates from memorysync_search by noting that search does not surface disagreements. An agent can distinguish this tool from its siblings immediately.

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?

Gives explicit timing: 'Call this before proposing an architectural change, to check whether the question was already settled and why.' It also names the alternative tool and the deciding condition, making the selection rule unambiguous.

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