Skip to main content
Glama
deanchong
by deanchong

delete_issue_test_result

Destructive

Unlink a test result from an issue by specifying the issue and test result IDs.

Instructions

Unlink a test result from an issue. Unlink a test result from an issue using its unique identifier.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
pathYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

C2.7/5.0
Behavior3/5

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

Annotations already declare destructiveHint=true, idempotentHint=false and openWorldHint=true. The word 'unlink' adds some value by implying the test result entity itself survives and only the association is removed, which tempers the destructive hint. However, nothing is said about reversibility, auth requirements, or behavior on a non-existent link.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness2/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The second sentence restates the first with no added information ('using its unique identifier' adds nothing meaningful). Half the text is redundant padding.

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?

For a destructive, non-idempotent mutation with an undocumented nested parameter object and no output schema, the description is too thin. It leaves unanswered what a failed unlink looks like, whether the operation is reversible, and which id maps to which argument.

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 reported at 0% for the top-level 'path' object; the description only says 'using its unique identifier' (singular), which does not clarify that two nested identifiers, issueId and testResultId, are required. The description fails to compensate for the coverage gap.

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+resource: 'Unlink a test result from an issue.' This distinguishes it from siblings such as delete_test_result or get_issue_test_results, since it removes an association rather than an entity. No explicit sibling naming, but the operation is unambiguous.

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 guidance, no prerequisites, no alternatives named. An agent gets no signal about when unlinking is appropriate versus using post_issue_test_results or get_issue_test_results, nor what happens if the link does not exist.

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

Deploy Server

Other Tools