Skip to main content
Glama

ass_join_drawings

Merge multiple ASS drawing strings into one, rejecting empty parts to prevent subpath loss. Use to combine split vector drawings into a single path.

Instructions

Join several drawing strings into one (the inverse of ass_split_drawing).

parts is a list of drawing strings (a single string is treated as a one-element list). Every part must parse; empty strings are rejected so a subpath can never be silently lost. Coordinates are serialised as integers.

Returns {drawing, count, subpath_count, point_count, bbox, size, doc_id}.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
partsNo
doc_idNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4.2/5.0
Behavior4/5

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

With no annotations, the description carries the full burden and does disclose real behavior: every part must parse, empty strings are rejected so no subpath is silently lost, and coordinates are serialised as integers. It also enumerates the return payload. It does not state side effects or whether the operation touches the document beyond returning doc_id, leaving a modest gap.

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?

Front-loads the core action, then adds validation and return details in compact, well-organized sentences with no filler. Every sentence earns its place.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

An output schema exists, so return-value explanation is redundant but harmless. For a two-parameter transformation tool the description is nearly complete, with the only real omission being any explanation of the doc_id parameter.

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 0%, so the description must compensate. It explains 'parts' well (list of drawing strings, single string coerced to a one-element list) but says nothing about 'doc_id', leaving one of the two parameters undocumented in both schema and description.

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?

States a specific verb ('join') and resource ('drawing strings') and explicitly positions itself as the inverse of the sibling ass_split_drawing. An agent can distinguish it from ass_split_drawing, ass_transform_drawing, and ass_scale_drawing without opening a schema.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The inverse-of-ass_split_drawing framing gives clear context for when this tool applies, and the note that a single string is treated as a one-element list clarifies accepted input shapes. It stops short of naming exclusions or an alternative to pick when the parts don't parse, so it is clear but not exhaustive.

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