Skip to main content
Glama
Atakan-Emre

QA-MCP: Test Standardization & Orchestration Server

by Atakan-Emre

Test Suite Oluştur

suite_compose
Read-onlyIdempotent

Compose a targeted test suite from existing test cases for smoke, sanity, regression, E2E, integration, or performance runs.

Instructions

Test case listesinden Smoke/Sanity/Regression/E2E/Integration/Performance suite oluşturur.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
sprintNo
targetYes
testcasesYes
max_duration_minutesNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
suiteYesComposed suite; null on error
errorsNo
excluded_countNo
recommendationsNo
coverage_summaryNo
duration_warningNo
selected_testcasesNo
selection_rationaleNoWhy each test case was included or excluded

Schema Changelog

Changes observed during successful MCP inspections.

  1. Addedv2.1.1

TDQS

B3.3/5.0
Behavior3/5

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

Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, so the safety profile is covered. The description adds minimal context, only that it composes a suite from a list, without describing validation, output details, or any side effects. It is not contradictory, but does not enrich the behavioral picture.

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?

A single, front-loaded sentence with no redundant information. It efficiently conveys the core function without waste.

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 tool with 4 parameters, 2 of which are optional, and 0% schema coverage, the description is incomplete. It lacks details about the optional parameters, the expected structure of testcases, and any constraints or prerequisites. The existence of an output schema reduces the need to describe return values, but the parameter semantics and usage conditions remain underexplained.

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

Parameters2/5

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

The description partially explains two of the four parameters: 'test case list' maps to testcases, and the enumerated suite types map to target. However, it completely omits sprint and max_duration_minutes. Since the schema has 0% description coverage, the tool description fails to compensate for these undocumented parameters, leaving them ambiguous.

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 states a specific verb (creates), the resource (suite), and the source (test case list), and enumerates the six suite types. It is distinct from siblings like testcase_generate or testcase_lint, which focus on generating or validating individual test cases.

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?

No explicit guidance is given on when to use this tool vs alternatives. The description only states what it does, without mentioning conditions, exclusions, or recommending it for specific scenarios. The distinction from siblings is implicit, not stated.

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