Skip to main content
Glama
Stv-devl
by Stv-devl

export_dxf

Export architectural plans to DXF for CAD programs. Choose model mode for full-scale 1:1 drawing with editable layers and texts, or sheet mode for a scaled paper layout.

Instructions

Export a DXF. mode="model" (default): the plan at 1:1 in mm with its layers (murs, cloisons, ouvertures, cotations, textes...) and real editable texts, no sheet needed: use it to work in a CAD program. mode="sheet": the TechDraw page as drawn on paper (scaled). Path rules and overwrite as export_schedule.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
modeNomodel
pageNo
pathNo
overwriteNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4/5.0
Behavior4/5

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

With no annotations, the description carries the behavioral burden and does substantial work: it discloses output scale, units, layer inclusion, editable text, and the no-sheet-needed behavior of model mode. It also mentions overwrite and path rules, though the exact semantics are deferred to export_schedule rather than spelled out.

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 compact and front-loaded, with each mode explained in a separate clause and the cross-reference to export_schedule kept to one sentence. The parenthetical layer list adds useful domain detail without bloating the 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?

The core export behavior and the two modes are well covered, and an output schema exists so return-value details are not required. The main gaps are the semantics of the page parameter and the exact path/overwrite defaults, both of which rely on external knowledge of export_schedule rather than being self-contained.

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 mode parameter is well explained, including its default and the meaning of both enum values. However, the page parameter is only implied by the sheet-mode explanation, and path/overwrite behavior relies on a reference to export_schedule rather than being described here, which is thin given 0% schema description coverage.

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 opening sentence names the exact operation and artifact ('Export a DXF'), and the two modes specify what is produced: a 1:1 mm CAD plan with layers and editable text vs. the scaled TechDraw sheet. This clearly distinguishes it from sibling export tools like export_svg, export_pdf, and export_ifc without requiring schema inspection.

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 description gives concrete use context for each mode: model mode is 'to work in a CAD program' and sheet mode exports 'the TechDraw page as drawn on paper (scaled)'. It also signals consistency with export_schedule for path/overwrite behavior, but it does not explicitly state when to prefer export_dxf over the other export siblings.

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