Skip to main content
Glama
deanchong
by deanchong

get_test_case_requirements

Read-onlyIdempotent

Retrieve all requirements assigned to a specific test case by its unique identifier. Use the test case ID to list every linked requirement.

Instructions

Get all requirements for a test case. Retrieve all requirements assigned to 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=true, idempotentHint=true, destructiveHint=false and openWorldHint=true, so the safety profile is fully covered. The description adds nothing beyond that: no note on pagination, result ordering, what happens when the test case has no requirements, or authorization needs. It essentially restates the purpose a second time.

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 sentences where one would do; the second sentence is a near-paraphrase of the first ('Get all requirements for a test case' vs 'Retrieve all requirements assigned to a specific test case'), so roughly half the text is redundant.

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 simple read tool with no output schema, the description covers what is fetched and by what key, which is minimally sufficient. It omits return-shape hints (identifiers vs full requirement objects) and pagination behavior, which an agent would want for a collection-style endpoint.

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?

Only one nested parameter exists and the schema itself documents testCaseId as 'The test case identifier.' The description's phrase 'using its unique identifier' adds no format, type, or constraint detail beyond the schema. With a single parameter, this is an adequate baseline.

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 (Get/Retrieve) and resource (all requirements for a test case) with the scoping key clearly identified ('its unique identifier'). It is distinguishable from most siblings, though it never names the closely related inverse tool get_requirement_test_cases, so sibling differentiation is only partially addressed.

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 explicit when-to-use or when-not-to-use guidance and no mention of alternatives such as get_requirement_test_cases or get_test_case_issues. Usage is only inferable from the verb and the phrase 'assigned to a specific test case'.

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