Skip to main content
Glama
JFTavares

InDesign MCP para Windows

by JFTavares

create_object_style

Create reusable object styles in Adobe InDesign, specifying base style, fill and stroke colors, stroke width, and transparency for consistent formatting.

Instructions

Create a new object style

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nameYesStyle name
baseStyleNoBase style to inherit from
fillColorNoFill color (swatch name)
strokeColorNoStroke color (swatch name)
strokeWidthNoStroke width in points
transparencyNoTransparency percentage (0-100)

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

C2.9/5.0
Behavior2/5

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

With no annotations provided, the description carries the full burden of behavioral disclosure. It only states 'Create a new object style,' which implies a mutation but gives no details on side effects, whether creation is idempotent, what happens to existing styles, or any required permissions. This is a significant gap for a create operation.

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 concise sentence with no wasted words. It is appropriately sized for a simple create operation, though it lacks any additional structural elements like bullet points or examples. It is not overlong, but it is also very minimal.

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 six parameters, no output schema, and no annotations, this description is incomplete. It does not explain how the parameters interact, what the expected result of creation is, whether any parameters are conditional, or what the tool returns. An agent would need to guess at many behavioral aspects.

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?

The input schema has 100% description coverage for all six parameters, so the schema already documents each parameter's meaning. The tool description itself adds no parameter-specific context, but the baseline of 3 applies because the schema does the heavy lifting.

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 states a specific action (create) and resource (object style), making the purpose clear. It does not explicitly differentiate from siblings like create_paragraph_style or create_character_style, but the tool name itself disambiguates. It's a concise, unambiguous statement of 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?

The description provides no guidance on when to use this tool versus alternatives such as modify_object_style or apply_object_style. There is no mention of prerequisites, conditions, or exclusions, leaving the agent to infer usage solely from the name.

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