Skip to main content
Glama
deanchong
by deanchong

post_batch_update_test_cases

Destructive

Update multiple test cases at once by specifying their IDs and the fields to change. Apply the same field values to all selected cases with partial update support.

Instructions

Update multiple test cases. Update multiple test cases at once in a single request. Specify the test case identifiers and the fields you want to update, and all selected test cases will receive the same field values. This endpoint supports partial updates.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
bodyYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

B3.3/5.0
Behavior3/5

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

Annotations already declare destructiveHint=true, idempotentHint=false and openWorldHint=true, so safety profile is covered. The description adds genuinely useful behavior: uniform field values applied across all selected cases and support for partial updates. It still omits failure semantics (e.g., what happens to valid ids when one is invalid) and any permission requirements.

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?

Front-loaded and reasonably short, but the first two sentences are near-duplicates ('Update multiple test cases' / 'Update multiple test cases at once in a single request'), wasting space that could have carried usage guidance.

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 batch mutation with no output schema and annotations covering the safety profile, the description conveys the essential mechanics (batch, uniform values, partial update). It stops short of covering error/partial-failure behavior and auth, leaving moderate gaps for an agent invoking a destructive batch 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?

Schema description coverage is reported at 0% for the top-level body parameter, which is itself undocumented. The description partially compensates by explaining the body is a set of test case identifiers plus the fields to update, but it does not enumerate or clarify the updatable fields (tags, draft, risks, duration, applications, requirements).

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 (update) and resource (test cases) plus the batch scope ('multiple test cases at once in a single request'). This clearly separates it from the single-record put_test_case sibling, though it never names that alternative explicitly.

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?

Usage is implied by the batch semantics and the note that 'all selected test cases will receive the same field values,' which hints at when this is the right choice over a per-record update. However, it never states when-not to use it or names any sibling alternative (e.g., put_test_case or post_batch_delete_test_cases).

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