Skip to main content
Glama
Coding-Crashkurse

e2e-verifier

session_screenshot

Capture the current page of an active browser session as a viewport or full-page screenshot to verify website bug reports with visual evidence.

Instructions

Take a screenshot of the current page of an open session (viewport or full page).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
full_pageNo
session_idYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

B3.2/5.0
Behavior2/5

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

No annotations are provided, so the description carries the full burden. It discloses the basic behavior (screenshot) but does not mention whether the session must be visible/active, whether it waits for page load, what format the screenshot is returned in, or any side effects. For a tool with no annotation coverage, this is a significant gap.

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, front-loaded sentence that conveys the core action and the key option. No filler or redundancy.

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?

With no annotations, no output schema, and 0% schema description coverage, the description is too thin. It does not explain the return value (e.g., image path/URL), prerequisites (open session), or failure conditions. An agent would need to guess at important invocation details.

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 description coverage is 0%, so the description must compensate. It explains the full_page parameter's effect ('viewport or full page') but does not explain session_id semantics beyond the obvious. The description adds some value but leaves the agent to infer that session_id identifies the open session.

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 states a specific verb ('Take a screenshot') and resource ('current page of an open session'), and adds a scope qualifier ('viewport or full page'). It is clear and distinguishable from sibling tools like session_inspect or discover_elements, though it does not explicitly name a sibling alternative.

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 description implies usage context: it applies to an open session and can capture viewport or full page. However, it does not state when to prefer this over session_inspect or other inspection tools, nor does it mention prerequisites like needing an active session.

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