Skip to main content
Glama
JFTavares

InDesign MCP para Windows

by JFTavares

delete_page

Remove a specific page from an InDesign document by providing its index and confirming the destructive action.

Instructions

Delete a page from the document

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
pageIndexYesPage index to delete
confirmDestructiveNoREQUIRED: Confirm page deletion

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

B3.1/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 burden of disclosing behavior. It only says 'Delete a page' and does not state that deletion is permanent, that confirmDestructive must be true, or any side effects. The schema partially covers this via the confirmDestructive parameter, but the description itself adds no behavioral transparency.

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?

The description is a single short sentence with no filler and the core action is front-loaded. It is concise, though it achieves brevity by omitting important caveats.

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 destructive mutation tool with no annotations and no output schema, the description is too sparse. It does not explain that confirmation is required, that deletion is irreversible, or what happens to the page's contents. The schema compensates for some of this, but the overall context is incomplete.

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%, with both pageIndex and confirmDestructive already documented. The description adds no additional parameter meaning, so the baseline of 3 applies.

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 states the exact action ('Delete a page') and the resource ('from the document'), which is specific and unambiguous. It clearly differentiates from sibling tools like add_page, duplicate_page, and navigate_to_page because deletion is a distinct 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 about when to use this tool versus alternatives, such as add_page or duplicate_page. The description simply names the operation without mentioning prerequisites, destructive implications, or that it is the irreversible counterpart to adding a page.

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