Skip to main content
Glama

resolve_contradiction

Resolve a contradiction record by specifying the authoritative claim, reason, and resolver, creating an audit trail.

Instructions

Resolves a contradiction record, recording the authoritative chosen claim (optional), resolution reason, and audit trail.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
notesNoAdditional resolution notes
reasonYesDetailed explanation of why and how this contradiction was resolved
resolvedByYesName or identifier of the resolver
chosenClaimIdNoID of the claim accepted as authoritative (optional)
contradictionIdYesThe unique ID of the contradiction record to resolve

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

C2.9/5.0
Behavior2/5

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

With no annotations, the description carries the full burden. It mentions recording the chosen claim, reason, and audit trail, but does not disclose permissions required, whether the action is reversible, or what side effects occur (e.g., changing status, notifications).

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?

The description is a single, front-loaded sentence with no wasted words. It efficiently communicates the core action and recorded outputs.

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?

Given this is a mutation tool with no annotations, no output schema, and many similar siblings, the description is incomplete. It does not explain the resolution process, its effects, or how it differs from other contradiction management tools.

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 schema already documents all parameters. The description adds little beyond what is in the schema, only summarizing what gets recorded. Baseline 3 is appropriate.

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?

The description states a specific verb and resource: 'Resolves a contradiction record.' This is clear, but it does not distinguish the tool from siblings like dismiss_contradiction or review_contradiction, which also act on contradiction records.

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?

There is no guidance on when to use this tool versus alternatives such as dismiss_contradiction, reopen_contradiction, or advise_resolution. The description provides no context or exclusions.

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