critique_record
Publish a critique referencing an existing record without overwriting it.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| record | Yes | ||
| target_id | Yes |
Publish a critique referencing an existing record without overwriting it.
| Name | Required | Description | Default |
|---|---|---|---|
| record | Yes | ||
| target_id | Yes |
Changes observed during successful MCP inspections.
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description must carry the behavioral disclosure burden. It does disclose the important non-overwrite behavior and that the target record must already exist. But it omits permission requirements, validation behavior, error handling, and what happens if the target record is not found.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
A single concise sentence that front-loads the core action and immediately states the critical non-destructive guarantee. No filler or redundant wording.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The description is adequate for a simple two-parameter tool and covers the main non-overwrite behavior. Yet with no output schema, no annotations, and an underspecified nested record object, an agent still lacks important details about return values, validation, and failure modes.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
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. It partially does: 'critique' clarifies that the record object is the critique content, and 'existing record' clarifies target_id. However, it does not specify the required structure of the nested record object or the expected format of target_id.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description uses a specific verb ('Publish'), names the resource ('a critique referencing an existing record'), and adds a key differentiator ('without overwriting it'). This clearly distinguishes the tool from siblings like submit_record or get_record.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The phrase 'referencing an existing record' implies the intended use case, and 'without overwriting it' implies a non-destructive action. However, it does not explicitly state when to prefer this tool over submit_record or verify_record, nor does it name alternatives.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Add one secure layer between your agents and this server.