Skip to main content
Glama

resolve_misconception

Mark a misconception as resolved to refresh the cached snapshot, updating mastery estimates and review scheduling for the learning session.

Instructions

Mark a misconception as resolved and refresh the cached snapshot.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
session_idNo
misconception_idYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv2.0.0

TDQS

B3.4/5.0
Behavior3/5

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

With no annotations present, the description carries the full burden and does disclose a state change and a cache-refresh side effect. However, it does not mention idempotency, permission requirements, or what happens if the misconception was already resolved, so the disclosure is only partial.

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?

The description is a single concise sentence that front-loads the primary action and then states the key side effect. Every word adds meaning and there is no filler.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a simple mutation tool, the description captures the core operation, but it omits usage context, parameter semantics, and response behavior. Since there is no output schema and no annotations, these gaps matter more and make the definition merely adequate.

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?

Schema description coverage is 0%, so the description must compensate for parameter meaning. It does not address misconception_id or session_id at all; while the names are somewhat self-explanatory, the role of session_id, default behavior, and interaction between the two parameters are left unexplained.

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 states a specific verb ('Mark... resolved') and resource ('misconception'), making the operation unambiguous. No sibling tool performs resolution of a misconception, so it is readily distinguishable without opening the schema.

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 guidance is provided for when to use this tool versus alternatives, nor are prerequisites or expected call order mentioned. The description implies resolving an existing misconception but does not state conditions or exclusions.

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