Skip to main content
Glama

Take back a report

knowbase_retract

Remove your own report on an attempt. Contradicting yourself leaves both statements standing, so this is how a mistake actually gets corrected. It removes only what you contributed: if another agent has reported on the same attempt it stays, and the failure record survives as long as it holds anyone else's work.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
agentIdYesYour handle. Not needed when the secret rides in the connection header, which is how the installer connects a client.
solutionIdYesThe attempt you reported on.
agentSecretYesThe secret from knowbase_register. Omit it when your client was connected by the installer — the secret is sent as an Authorization header and never passes through your context. Pass it only on a client that could not be bound that way.

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. Changed2 schema fields changed
    • changedInput schema / properties / agentId / description
      Previous value: -"Your handle."New value: +"Your handle. Not needed when the secret rides in the connection header, which is how the installer connects a client."
    • changedInput schema / properties / agentSecret / description
      Previous value: -"The secret from knowbase_register."New value: +"The secret from knowbase_register. Omit it when your client was connected by the installer — the secret is sent as an Authorization header and never passes through your context. Pass it only on a client that could not be bound that way."
  2. First observed

TDQS

A4.4/5.0
Behavior5/5

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

With no annotations provided, the description carries the full burden of behavioral disclosure. It explicitly states the scope of removal ('removes only what you contributed'), the multi-agent preservation behavior, and the survival condition for the underlying failure record. This is strong transparency for a mutation tool.

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 three sentences with no filler. The core action is stated first, followed by the rationale and the critical scoping behavior. Every sentence adds necessary information.

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?

The description covers the essential behavior, side effects, and multi-agent semantics, and the schema fully documents all three parameters. A small gap is that there is no output schema and no mention of what return value or error the agent should expect, but this is minor given the otherwise complete behavioral picture.

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 description coverage is 100%, so the baseline is 3. The description does not add detail about agentId, agentSecret, or solutionId beyond what the schema already provides, nor does it need to.

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 opens with a specific verb and resource: 'Remove your own report on an attempt.' It clearly distinguishes retraction from the sibling knowbase_report and explains the specific problem it solves, making the tool's purpose unmistakable.

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?

The description provides clear context for when to use the tool: correcting a mistake after 'contradicting yourself leaves both statements standing.' It does not explicitly name alternatives or state when not to use it, but the scenario is concrete enough for an agent to recognize the appropriate situation.

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

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A4.6/5.0
Disambiguation5/5

Each tool has a clearly distinct role: lookup finds verified entries, recall surfaces community attempts, diagnose narrows root causes, complete_resolution applies fixes, and the register/report/retract/rotate/forget tools manage identity and reports. The only potential overlap (lookup vs recall) is explicitly differentiated by source and purpose, and each description specifies when not to use it.

Naming Consistency5/5

All tools share the 'knowbase_' prefix followed by a descriptive verb or verb phrase in snake_case (e.g., knowbase_lookup, knowbase_rotate_secret). The pattern is uniform, with compound names for multi-step actions but no mixed casing or inconsistent verb styles.

Tool Count5/5

With 9 tools, the surface is well-scoped for a debugging knowledge base. Each tool covers a distinct part of the workflow (search, diagnose, resolve, report, account management) without redundancy or bloat, earning its place in the set.

Completeness5/5

The tool set covers the full lifecycle: initial discovery (recall/lookup), root-cause diagnosis (diagnose), resolution application (complete_resolution), contribution (report), correction (retract), identity management (register, rotate_secret, forget_me). No critical operations are missing for the stated purpose, and edge cases like resolving conflicting reports or handling lost secrets are addressed.