Skip to main content
Glama
aamar-shahzad

MCP Screenshot Server

open_file_in_preview

Open image files directly in macOS Preview or default viewer without loading them into the session. View screenshots instantly using the native app without preloading.

Instructions

Open an image file directly in the native Preview app (macOS) or default viewer.

This doesn't require loading the image into the session first.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
pathYesPath to the image file to open

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
pathYesPath to the image file
messageYesStatus message

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A3.5/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. It discloses that the tool doesn't require loading the image into the session, which is useful, but it doesn't mention side effects like whether it launches a GUI app, whether it blocks, or whether it requires a display environment. The description is accurate but 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?

The description is two sentences with no wasted words. The key behavioral distinction (doesn't require loading into session) is front-loaded and earns its place.

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-parameter tool, the description is mostly complete. However, with no annotations and no mention of return values or potential errors (e.g., file not found), an agent might not know what to expect. The output schema exists but the description doesn't clarify the tool's behavior beyond opening the file.

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 the schema already documents the path parameter. The description adds no extra meaning beyond what the schema provides, so the baseline 3 is appropriate.

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 tool opens an image file in the native Preview app or default viewer, with a specific verb and resource. It distinguishes itself from loading the image into the session, which helps differentiate it from tools like load_image, though it doesn't explicitly name a sibling.

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 when to use this tool: when you want to open an image externally without loading it into the session. However, it doesn't explicitly state when not to use it or name alternatives like load_image or open_in_preview, leaving some inference to the agent.

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