Skip to main content
Glama
deanchong
by deanchong

get_test_case_comments

Read-onlyIdempotent

Retrieve all comments for a TestMonitor test case by its unique ID, so AI agents can review discussion and feedback tied to a specific case.

Instructions

Get all comments for a test case. Retrieve all comments for a 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.7/5.0
Behavior2/5

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

Annotations already declare readOnlyHint=true, idempotentHint=true, openWorldHint=true, and destructiveHint=false, so the safety profile is fully covered elsewhere. The description adds nothing beyond that – no note on result ordering, pagination, or what a 'comment' object contains.

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 the second merely rephrases the first ('Get all comments for a test case' vs 'Retrieve all comments for a test case using its unique identifier'). It is short and front-loaded, but the duplication is pure waste rather than earned content.

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 annotations covering safety and no output schema, the description is minimally sufficient. It is missing any hint about return shape or ordering, which keeps it at the minimum-viable level.

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 0% and the single parameter is a nested object containing testCaseId. The description only says 'using its unique identifier', adding no format, type, or sourcing detail to compensate for the schema 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 (comments for a test case), which cleanly separates it from siblings like get_issue_comments and get_test_result_comments by resource type. However, it never explicitly names or contrasts those siblings, leaving the agent to infer the distinction from the resource noun alone.

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?

The description offers no conditions, prerequisites, or alternatives for when to use this tool. With many comment-fetching siblings in the list, the absence of any routing guidance is a real gap.

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