Skip to main content
Glama

bulk_link_automated_tests

Link up to 500 manual test cases to automated Playwright tests in a single call, with per-item success checks so one failure doesn't break the batch.

Instructions

Link up to 500 manual case ↔ automated test pairs in one call. Requires write permission and the automation_linking plan feature. Returns per-item results ({ manualTestCaseId, fullTitle, success, error?, link? }) — one bad row never fails the batch, so ALWAYS check each item's success. manualTestCaseId is the case internal id (tcm_tc…), not the TC-123 key. Take pwTestId + fullTitle for every row from list_automated_tests.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
linksYesPairs to link (1–500).
projectIdYesProject ID (Required). The TestDino project identifier.

Schema Changelog

Changes observed during successful MCP inspections.

  1. Addedv2.0.3

TDQS

A4.8/5.0
Behavior5/5

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

With no annotations, the description fully carries behavioral disclosure. It reveals that the operation needs write permission, returns per-item results, never fails the whole batch on a bad row, and explicitly warns to check each item's success. It also clarifies the manualTestCaseId identifier nuance, which is critical for correct invocation.

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?

Four dense sentences, each earning its place: purpose, permissions/feature, output and failure semantics, ID caveat, and data source. The core purpose is front-loaded, and there is no filler.

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

Completeness5/5

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

For a two-parameter batch tool with no output schema, the description covers what an agent needs: how to populate links, what response to expect, how to handle per-item failures, and the required permissions. Nothing essential is missing for correct invocation.

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

Parameters5/5

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

The schema already covers manualTestCaseId, but the description adds significant actionable meaning: it tells the agent to take pwTestId and fullTitle from list_automated_tests, stresses the internal _id format versus TC-123 keys, and implies the 1–500 batch limit. This goes well beyond the structured schema.

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 uses a specific verb ('Link'), a clear resource ('manual case ↔ automated test pairs'), and a scope ('up to 500... in one call'). It differentiates from the sibling link_automated_test by emphasizing batch behavior and per-item results, so an agent can select it correctly.

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?

It clearly states the batch context, required permissions, feature prerequisite, and instructs the agent to source pwTestId and fullTitle from list_automated_tests. It does not explicitly contrast with link_automated_test for single links, but the batch framing and sibling names make the intended use clear.

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