Skip to main content
Glama
sarthakshah

FreshMemory MCP

by sarthakshah

watch_status

Displays tracked source health, overdue checks, errors, and pending changes so you can monitor freshness and resolve review needs.

Instructions

Show tracked source health, overdue checks, errors, and pending changes.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
scopeNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.2.2

TDQS

C2.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 does disclose the categories of information returned (health, overdue checks, errors, pending changes), which is real value given there is no output schema, but it never states that the call is non-mutating, what permissions are needed, or any pagination/rate constraints.

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 front-loaded sentence with no filler. Its brevity is efficient, though the terseness borders on under-specification rather than genuinely earned concision.

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?

With no annotations, no output schema, and an undocumented parameter, the description is the only carrier of information and it falls short. Listing the reported categories helps, but the scope parameter and the read-only nature of the call remain unexplained.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The single 'scope' parameter has 0% schema description coverage and is never mentioned in the description. Nothing tells the agent what values scope accepts or what happens when it is omitted (it is not required). Almost no meaning is added beyond the bare schema.

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 specific verb ('Show') and enumerates the resource contents it reports: tracked source health, overdue checks, errors, and pending changes. An agent can tell this is a read-oriented status/monitoring tool. It does not, however, explicitly differentiate itself from nearby siblings like review_changes, sync_sources, or audit_memory.

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 statement, no prerequisites, and no named alternatives among the ten sibling tools. Use is only implied by the word 'Show' and the notion of tracked sources; an agent must infer the trigger condition.

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