Skip to main content
Glama
guyco6742

cypress-runner-mcp

by guyco6742

cypress_output

Retrieve full console output from the current or last Cypress test run. Filter specific lines or limit the number returned.

Instructions

Get the full console output from the current or last test run

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
linesNoNumber of lines to return from the end (default: 100)
filterNoFilter output to lines containing this text

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

A4/5.0
Behavior3/5

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

With no annotations provided, the description carries the burden of behavioral disclosure. 'Get' implies a read-only operation and 'full console output' describes what is returned, but it does not clarify behavior when no test run exists, whether output is streamed or buffered, or whether retrieving output has side effects. Basic behavior is present but not deeply disclosed.

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, front-loaded sentence with no filler. Every word contributes to the core purpose, making it easy for an agent to parse quickly.

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

Completeness4/5

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

For a simple tool with two optional parameters and no output schema, the description covers the essential context: what is retrieved and from when. It would benefit from noting the output format or behavior when no run output is available, but nothing critical is missing for basic invocation.

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?

The input schema already provides 100% coverage for both parameters with meaningful descriptions ('lines' and 'filter'). The tool description adds no additional parameter-level meaning, so the baseline score of 3 is appropriate since the schema does the heavy lifting.

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 ('Get'), a specific resource ('full console output'), and a clear temporal scope ('current or last test run'). It also differentiates from sibling tools like cypress_status or cypress_screenshots by focusing on console output rather than status or artifacts.

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?

The description provides clear context: the tool retrieves output from the current or last test run, which implies it is useful after or during a Cypress run. It does not explicitly name alternatives or exclusions, but the temporal context is unambiguous enough for an agent to select it appropriately.

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