Skip to main content
Glama
JFTavares

InDesign MCP para Windows

by JFTavares

save_document

Save the active document to a new path or overwrite an existing file, with confirmation to prevent data loss.

Instructions

Save the current document

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
filePathNoOptional: Save as new file path
confirmDestructiveNoREQUIRED: Confirm overwrite of existing files

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

B3.2/5.0
Behavior2/5

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

With no annotations, the description carries full responsibility for behavioral disclosure. It only states 'save', but does not explain side effects (e.g., overwriting without confirmation), requirements (confirmDestructive), or return behavior. The schema description of confirmDestructive hints at overwrite, but the tool description itself is silent on these behaviors.

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 a single sentence with zero unnecessary words. It is maximally concise and front-loaded with the core action and object.

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 tool with no output schema and no annotations, the description is severely underspecified. It lacks information about return values, error cases, what happens when filePath is omitted, or the role of confirmDestructive. An agent cannot fully anticipate the tool's behavior from this description alone.

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% (both parameters have descriptions), so the schema already documents parameter meaning. The description adds nothing beyond the schema, so a baseline of 3 is appropriate.

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 clearly states a specific verb ('Save') and resource ('the current document'), which is unambiguous and distinguishes it from all sibling tools (no other save operation exists). It is immediately obvious what the tool does.

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 on when to use this tool versus alternatives or any prerequisites (e.g., a document must be open). There is no mention of typical use cases or conditions, leaving the agent to infer when saving is appropriate.

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