Skip to main content
Glama
deanchong
by deanchong

get_test_case_issues

Read-onlyIdempotent

Retrieve all issues linked to a specific test case by providing its unique identifier. Use this to track problems and dependencies for a test case.

Instructions

Get all issues for a test case. Retrieve all issues associated with a specific test case 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.9/5.0
Behavior2/5

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

Annotations already declare readOnlyHint, idempotentHint, destructiveHint=false and openWorldHint, so the safety profile is fully covered. The description adds nothing beyond that profile: no pagination behavior, no output/return format, and no note on what 'all issues' includes. With no annotation contradiction, this is a bare restatement rather than added context.

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

Conciseness3/5

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

Two short sentences, front-loaded with the core action, but the second sentence is essentially a restatement of the first and adds no new information. It is not bloated, but one of the two sentences does not earn its place.

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 read-only, idempotent list tool whose annotations already cover the safety profile, the definition is serviceable but omits return shape, pagination, and empty-result behavior. The nested parameter structure is also left unexplained, so an agent has small residual gaps.

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 reported at 0% for the top-level parameter, so the description must carry meaning. It does say 'using its unique identifier', which maps to the nested testCaseId field (itself documented in the schema), but it does not explain the nested 'path' wrapper or the identifier's origin/format. Marginal compensation 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 (Get) and resource (issues) scoped to a test case, which distinguishes it from the broader get_issue_collection and the sibling get_test_result_issues. However, it never names those alternatives explicitly, so the differentiation is left to inference from the scope phrase.

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 when-to-use or when-not-to-use guidance and no mention of alternatives such as get_issue_collection or get_test_result_issues. Usage is only implied by the 'for a test case' scoping phrase.

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