Skip to main content
Glama

bulk_update_cases

Idempotent

Update up to 100 test cases in one call, applying new status, priority, and tags to a single project's cases.

Instructions

Update many test cases in one call - status, priority and tags - up to 100 at a time, all belonging to the same project. Returns updated, skipped, notFound and an errors array. Two different failure modes, and only one of them is all-or-nothing. Unknown or archived ids do NOT stop the batch: they land in notFound and in errors while every other case is still written, so read updated rather than treating the call as a whole. An unrecognised status or priority value, or ids spanning two projects, is rejected outright with nothing written. Each field is replace-all across the batch and there is no undo, so snapshot the current values with list_test_cases first if you may need to put them back.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
caseIdsYesArray of numeric case IDs to update (e.g., [1, 2, 3])
updatesYesUpdates to apply. At least one field must be provided.

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. Changed1 schema field changedv1.5.3
    • changedInput schema / properties / updates / properties / status / description
      Previous value: -"New status for all cases (e.g., \"Ready\", \"Approved\")"New value: +"New status applied to every case in the batch. The vocabulary is per-project - read meta.availableStatuses from list_test_cases, or call get_project, and send a value from that list. An unrecognised value is rejected and NO case is updated."
  2. First observedv1.5.0

TDQS

A4.6/5.0
Behavior5/5

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

The description thoroughly explains partial failure behavior, all-or-nothing failure modes, and the fact that invalid IDs do not abort the batch. It also warns about no undo and recommends snapshotting with list_test_cases first. This adds substantial behavioral detail well beyond the annotations.

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

Conciseness5/5

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

The description is front-loaded with the core purpose and limits, then follows a logical sequence: output, failure modes, batch behavior, and undo safety. Every sentence adds information; there is little redundancy for a tool with this much edge behavior.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

It covers edge cases, return shape, project constraint, id limits, and practical guidance. The main missing detail is the exact meaning of the `skipped` return member, which is listed but never defined.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100%, so the baseline is 3. The description goes beyond the schema by explaining that each field is replace-all across the batch, that project span matters, and that the response should be read via `updated` rather than treated as a single success/failure result.

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 begins with a clear verb and resource: 'Update many test cases in one call,' and distinguishes it from single-case updates by focusing on bulk, batch, and same-project constraints. It is specific about what fields can be updated: status, priority, and tags.

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

Usage Guidelines4/5

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

The description gives strong context for when to use it: bulk operations up to 100 cases, all belonging to the same project. It also suggests preconditions by referencing list_test_cases for snapshotting values and for reading available statuses. It does not explicitly say 'for a single case, use update_test_case,' but the bulk framing makes the intended scope clear.

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

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/m00nreport/mcp-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server