Skip to main content
Glama
Cerios-TechLab

Quality Transformation Coach Assistent MCP server

Analyze Test Coverage

analyze_test_coverage

Compare test files against source files to identify untested areas and coverage gaps, helping you target missing tests and improve test suite completeness.

Instructions

Analyze test coverage by comparing test files against source files.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
repo_pathYesLocal filesystem path to the repository

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

B3.3/5.0
Behavior2/5

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

With no annotations, the description must disclose behavioral traits on its own. It only mentions the comparison approach, not whether the operation is read-only, if it requires a valid git repo, what happens when files are missing, or whether analysis is computationally intensive. This is a meaningful gap for an analysis tool.

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 sentence with no filler. The core action and method are front-loaded, and every word contributes meaning. Ideal for an agent to parse quickly.

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 presence of an output schema covers return values, and the single parameter is well documented. However, the lack of usage guidance, behavioral transparency, or prerequisites makes the definition only minimally complete for an agent deciding whether and how to invoke it.

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

Parameters3/5

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

Schema coverage is 100%; the repo_path parameter is already described clearly as the local filesystem path to the repository. The tool description adds the notion of comparing test files against source files within that path, which is helpful but largely implied. This aligns with the baseline of 3 for high schema coverage.

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 states a specific verb ('Analyze') and resource ('test coverage') and clarifies the method ('by comparing test files against source files'). This clearly distinguishes it from sibling tools like detect_test_patterns or analyze_flaky_tests, which address different concerns.

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 given on when to choose this tool over alternatives such as test_result_summary or quality_hotspot_detection. The context is only implied by the name and title; the agent receives no explicit selection criteria or exclusions.

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