Skip to main content
Glama
Atakan-Emre

QA-MCP: Test Standardization & Orchestration Server

by Atakan-Emre

Test Case Normalleştir

testcase_normalize
Read-onlyIdempotent

Convert test cases from Markdown, Gherkin, JSON, or plain text into a standardized format for consistent test management and downstream processing.

Instructions

Markdown, Gherkin, JSON veya düz metni QA-MCP standardına çevirir.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
input_dataYes
source_formatNoauto

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
testcaseYesTest case raised to the standard; null when it could not be parsed
warningsYesFields that were padded or changed
transformationsYesTransformations applied
source_format_detectedYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. Addedv2.1.1

TDQS

C2.9/5.0
Behavior3/5

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

Annotations already indicate read-only and idempotent behavior; the description adds no extra behavioral context but is consistent with those hints.

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 a single, concise sentence with no redundant information, front-loading the primary action.

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?

The description provides the core conversion purpose and implies the return of a normalized test case, but lacks parameter explanations; however, the presence of an output schema likely covers the return structure.

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

Parameters1/5

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

The input schema has no descriptions for either parameter, and the description does not explain what input_data or source_format mean or how the enum values behave, leaving the agent to infer.

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 clearly states the tool converts Markdown, Gherkin, JSON, or plain text into the QA-MCP standard, using a specific verb and resource. It is distinct from sibling tools like testcase_to_xray, though it does not explicitly name alternatives.

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 guidance is provided on when to use this tool versus alternatives like testcase_lint or testcase_to_xray, nor any conditions or exclusions.

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