Skip to main content
Glama
g-tiwari

@g-tiwari/mcp-testrail

by g-tiwari

update_cases

Update multiple test cases in TestRail at once by setting shared fields such as type, priority, template, or milestone for a list of case IDs.

Instructions

Bulk update multiple test cases

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
type_idNoCase type ID
case_idsYesArray of case IDs to update
suite_idNoSuite ID (required for multi-suite projects)
project_idYesProject ID
priority_idNoPriority ID
template_idNoTemplate ID
milestone_idNoMilestone ID

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

B3.3/5.0
Behavior2/5

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

No annotations are provided, so the description carries the full behavioral-disclosure burden. It only says 'update', which is already in the tool name, and adds no information about side effects, partial failures, required permissions, field-overwrite semantics, or response behavior.

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

Conciseness4/5

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

The description is very concise and front-loaded, with no filler words. Every word contributes meaning. However, the brevity borders on under-specification for a tool of this complexity.

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 bulk-mutation tool with seven parameters, no annotations, and no output schema, the description is too thin. It lacks guidance on multi-suite requirements, partial-update behavior, return values, and when to use this tool versus singular alternatives. The schema covers parameters but not the operational context.

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?

All seven parameters are documented in the input schema, so schema description coverage is 100%. The description itself adds no parameter-level meaning, so the baseline score of 3 applies.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly identifies the verb ('update'), the resource ('test cases'), and the scope ('bulk', 'multiple'). This distinguishes it from the singular sibling 'update_case' and from delete/move operations, so an agent can tell which tool to select without opening the schema.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The phrase 'bulk update multiple test cases' implies the tool is for updating more than one case at a time, but it never explicitly states when to use it over 'update_case' or what the exclusion criteria are. The usage guidance is only implied, not actionable.

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