Skip to main content
Glama
Coding-Crashkurse

e2e-verifier

validate_ticket

Validate a bug ticket and return errors and warnings without launching a browser, helping you catch issues before a full verification run.

Instructions

Validate a ticket without opening a browser; returns errors and warnings.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
ticketYes
optionsNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
okYes
errorsYes
warningsYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A3.6/5.0
Behavior3/5

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

With no annotations, the description carries the full burden. It discloses the most important behavior — no browser is opened — and that it reports errors and warnings. It does not clarify side effects, permissions, or whether options affect validation, but for a non-mutating validation tool the core guarantee is present.

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?

One tight, front-loaded sentence with no filler. Every clause adds information: the operation, the no-browser guarantee, and the return type.

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 purpose and no-browser behavior are enough to select the tool, and the output schema covers return details. However, the missing usage guidance and unexplained options make it incomplete for an agent deciding whether to call this before run_ticket or how to set options.

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?

Schema description coverage is 0%, so the description should compensate, but it says nothing about the two parameters beyond the word 'ticket'. The optional 'options' parameter is entirely unexplained, leaving the agent to guess whether RunOptions affect validation.

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 action ('validate a ticket'), the key constraint ('without opening a browser'), and the result type ('returns errors and warnings'). This clearly separates it from execution-oriented siblings like run_ticket, even though no sibling is named.

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

Usage Guidelines3/5

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

The phrase 'without opening a browser' implies this is the safe, static validation step to use before running a ticket, but the description never states when to use it versus run_ticket or run_scenario, nor does it name alternatives or exclusions. The usage context is only implied.

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