Skip to main content
Glama

ass_set_wrap_style

Set ASS subtitle line wrapping using Aegisub numeric codes or names for smart, end-of-line, no wrapping, or bottom-of-line styles.

Instructions

Set WrapStyle using Aegisub's numeric codes.

Args: style: 0 smart, 1 end of line, 2 no wrapping, 3 bottom of line only. The names are accepted too. doc_id: document id or None for the current document.

Returns: {"doc_id", "wrap_style", "name", "previous"}.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
styleYes
doc_idNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

B3.2/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 full behavioral burden. It implies mutation and mentions a 'previous' return field, but does not state permission requirements, reversibility, document-state requirements, or other side effects.

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 compact, front-loads the action, and structures arguments and return values clearly with no wasted text.

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 low-complexity setter, the description covers both parameters and the return shape adequately, and an output schema exists. However, with no annotations, it lacks key behavioral context about mutation safety, permissions, and usage alternatives.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

With 0% schema description coverage, the description compensates well by mapping numeric style codes and noting that names are accepted. It also explains that doc_id=None uses the current document, though it does not enumerate the accepted style name strings.

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 and resource: 'Set WrapStyle'. The purpose is clear, but it does not explicitly differentiate this global setting setter from sibling style or script-info tools, so it falls short of the top score.

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 explains arguments but gives no guidance on when to use this tool versus alternatives such as ass_set_script_info or ass_wrap_range. Usage is only implied by the verb 'Set'.

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

Deploy Server

Other Tools