Skip to main content
Glama
deanchong
by deanchong

get_test_case_attachments

Read-onlyIdempotent

Retrieve all attachments for a specific test case using its unique identifier. Provide the test case ID to fetch associated files.

Instructions

Get all attachments for a test case. Retrieve all attachments 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=true, idempotentHint=true, and destructiveHint=false, so the safety profile is covered structurally. The description adds nothing beyond that—no mention of pagination, whether attachments include metadata or links, or empty-result behavior—so it contributes little behavioral 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 sentences where one would suffice; the second sentence is a pure restatement of the first with no new information. The core purpose is front-loaded, which is the saving grace.

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 single-parameter read tool with safety annotations and no output schema, the description is minimally adequate—it names the resource and the identifier. It omits return-shape expectations and the meaning of the nested path object, leaving a modest gap.

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 0% for the single nested 'path.testCaseId' parameter, though the schema does supply a brief description for testCaseId itself. 'Using its unique identifier' loosely maps to testCaseId but does not clarify the unusual nested wrapper object or the identifier type.

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 and resource ('Get all attachments for a test case'), which distinguishes it from the write siblings post_test_case_attachment and delete_test_case_attachment. The second sentence merely restates the same thing in longer form, adding no differentiation.

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 get_test_case_attachments' siblings get_issue_attachments or get_test_result_attachments, nor any prerequisite or context cues. The agent must infer usage entirely from the name.

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