Skip to main content
Glama

photoshop_export_as

Export the active Photoshop document as a PNG or JPEG file with adjustable quality for saving or sharing finished artwork.

Instructions

Export the active document as PNG or JPEG.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
qualityNo
file_pathYes
format_typeNopng

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

C2.7/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 behavioral burden, and it discloses almost nothing: it does not say whether the file is overwritten if file_path exists, whether the document is modified, or what permissions/state are required. The presence of an output schema covers return values, but the write-to-disk semantics remain opaque.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

A single, front-loaded sentence with no filler and no redundancy. It is efficient, though the brevity shades into under-specification rather than disciplined conciseness.

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?

For a 3-parameter export tool with zero annotation coverage and no schema descriptions, the one-line description is far too thin. An agent cannot determine what quality controls, whether the export overwrites, or how this differs from save_document.

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 must compensate, and it only partially does: it clarifies that format_type accepts PNG or JPEG, but says nothing about file_path or the quality parameter (default 90, presumably JPEG-only). The quality parameter is left completely unexplained in both schema and description.

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?

States a specific verb (export) and resource (the active document) plus the output formats (PNG or JPEG), which is more informative than a bare name restatement. It does not, however, distinguish itself from the sibling photoshop_save_document, which an agent could easily confuse with this operation.

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?

There is no guidance on when to use this versus photoshop_save_document, nor any mention of prerequisites such as having an open/active document. The agent must infer the use case entirely from the name.

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