Skip to main content
Glama
gracexiaowork

testrail-mcp-server

testrail_update_case

Modify an existing TestRail test case by specifying its ID and providing new values for title, steps, preconditions, expected results, priority, references, or estimate.

Instructions

Update an existing test case

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
refsNoOptional references
titleNoOptional new title
case_idYesThe ID of the test case to update
estimateNoOptional estimate
priority_idNoOptional priority ID
custom_stepsNoOptional test steps
custom_expectedNoOptional expected result
custom_precondsNoOptional preconditions

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

C2.8/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 burden. It never states that this is a partial update (only case_id is required, all other fields optional), whether omitted fields are preserved, what permissions are required, or what the response contains — all material for a mutation tool.

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?

The single sentence is front-loaded and free of waste, but at four words it is under-specified rather than genuinely concise for an 8-parameter mutation tool. Brevity here reflects a missing description more than disciplined editing.

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 mutation tool with no annotations, no output schema, and eight parameters, the description omits update semantics (full replace vs partial), permissions, and failure modes. What exists is accurate but far short of what an agent needs to call this safely.

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 100%, so every parameter is already documented in the schema and the baseline is 3. The description adds no syntax, format, or constraint detail (e.g. accepted priority_id values, estimate format) beyond what the schema provides.

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 (update) and resource (test case), so the agent knows exactly what domain operation this is. It does not differentiate from siblings such as testrail_update_section or testrail_update_run, but the resource noun is specific enough to disambiguate in practice.

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 versus testrail_add_case or testrail_get_case, no mention that the case must already exist, and no prerequisites or permissions noted. The only implicit cue is the word 'existing', which hints at a precondition but states nothing actionable.

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