Skip to main content
Glama

screenshot

Capture and save a screenshot of the current page as evidence for UX review findings, returning the image for immediate inspection.

Instructions

Save a screenshot of the current page in the report folder as evidence, and return the image so you can look at it. Take one for each moment a finding refers to. The file is screens/-.png.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nameYesShort name for the moment, such as signup-empty or flows-after-delete. It becomes the file name.
fullPageNoSave the whole page instead of the visible window, up to 5,000 pixels tall. You still get the visible window to look at. Defaults to false.

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed2 schema fields changedv0.4.6
    • addedInput schema / properties / fullPage / description
      Added value: +"Save the whole page instead of the visible window, up to 5,000 pixels tall. You still get the visible window to look at. Defaults to false."
    • addedInput schema / properties / name / description
      Added value: +"Short name for the moment, such as signup-empty or flows-after-delete. It becomes the file name."
  2. First observedv0.4.5

TDQS

A4/5.0
Behavior4/5

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

With no annotations, the description carries the behavioral disclosure burden. It reveals the file destination, the file naming convention, and the fact that the image is returned for inspection. The full page vs. visible window behavior is documented in the schema, adding further transparency.

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 compact and front-loaded with the core action, followed by a precise usage instruction and a file naming note. Every sentence earns its place with no filler.

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 two-parameter tool with a complete input schemahare, the description plus schema covers what is saved, where, how to name it, and what is returned. It is slightly incomplete only in not distinguishing itself from the similar sibling tools capture and snapshot.

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 100%, so both parameters are already documented well. The description adds the file naming pattern 'screens/<size>-<name>.png', which slightly enriches the name parameter, but does not meaningfully compensate beyond the schema baseline.

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 clearly states the verb and resource: save a screenshot of the current page into the report folder as evidence, and return the image. However, it does not differentiate itself from the sibling tools capture or snapshot, so it stops short of a 5.

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 gives explicit usage guidance: 'Take one for each moment a finding refers to.' This is a clear context for when the tool should be used, though it does not mention when not to use it or name alternatives such as capture or snapshot.

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