Skip to main content
Glama
aamar-shahzad

MCP Screenshot Server

load_image

Load an image file from a specified path to begin annotating with boxes, arrows, text, highlights, and editing tools.

Instructions

Load an existing image file for annotation.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
pathYesPath to the image file to load

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
widthYesImage width in pixels
heightYesImage height in pixels
messageYesStatus message
image_idYesUnique identifier for the captured image

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 carries the full burden of behavioral disclosure, but it only states the action and purpose. It does not say whether loading replaces the current image, whether it has side effects, what happens with invalid paths, or what the output contains. 'Load' implies reading an existing file, but that is minimal.

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 that is front-loaded with the verb and object. It contains no filler and communicates the core purpose efficiently.

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?

For a simple one-required-parameter tool with an output schema, the description is minimally adequate: an agent knows what to do and what input to provide. However, in the context of many sibling tools, it lacks guidance on workflow placement and how this load differs from other loading/opening operations.

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%, and the path parameter is already described as 'Path to the image file to load.' The description adds little beyond the schema, so the baseline of 3 applies. It confirms the parameter refers to an existing file, but no format or sourcing details are added.

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 uses a specific verb and resource: it loads an existing image file for annotation. This makes the tool's purpose immediately clear and distinguishes it from siblings that create images (capture_screenshot), list them (list_images), or retrieve them in other forms (get_image).

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 provided about when to use this tool versus alternatives such as get_image, open_in_preview, or list_images. The phrase 'for annotation' implies its context, but it does not state exclusions, preconditions, or how to obtain a valid path.

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