Skip to main content
Glama
Atakan-Emre

QA-MCP: Test Standardization & Orchestration Server

by Atakan-Emre

Test Case Kalite Analizi

testcase_lint
Read-onlyIdempotent

Analyze test cases to return a quality score and actionable improvement suggestions. Optionally apply strict mode for stricter evaluation.

Instructions

Test case'i analiz eder, kalite skoru ve iyileştirme önerileri döner.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
testcaseYes
strict_modeNo
include_improvement_planNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
gradeYes
scoreYes
issuesNo
passedYesMet the minimum quality threshold
summaryNo
suggestionsNo
schema_validYesConforms to the QA-MCP standard's schema constraints
schema_errorsNo
improvement_planNo

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?

The annotations already declare readOnlyHint, idempotentHint, and destructiveHint. The description adds no extra behavioral context beyond stating it analyzes and returns results, which is consistent with the annotations. It does not contradict them, but it also does not go beyond them.

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, clear sentence with no unnecessary words. It directly states the action and the output.

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?

While the output schema covers return details, the description does not provide essential context about the parameters or the distinction from the batch variant. Given the parameter count and lack of descriptions, the description alone is insufficient to use the tool correctly in all scenarios.

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?

There are no parameter descriptions in the schema (coverage 0%), and the description does not explain the purpose or effect of the three parameters (testcase, strict_mode, include_improvement_plan). The names give some hint but not enough for correct usage.

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 ('analiz eder' - analyzes) and identifies the resource (test case) and the outcome (quality score and improvement suggestions). It clearly distinguishes this from sibling tools like testcase_generate or testcase_normalize by its focus on analysis and scoring.

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

Usage Guidelines1/5

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

The description provides no guidance on when to use this tool versus alternatives such as testcase_lint_batch or other sibling tools. There is no mention of single vs batch usage or any decision criteria.

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