Skip to main content
Glama
sebastiankoukoui

open-mcp-cad

set_fast_draw

Toggles fast draw mode to disable automatic screen refresh during long drawing operations, reducing wait times by preventing redraws after each element.

Instructions

Schaltet das Schnellzeichnen ein oder aus.

Ist es an, schaltet die Bridge Cadworks automatische Bildschirm- Auffrischung ab, solange ein Zeichenauftrag läuft, und danach wieder ein — auch wenn der Auftrag fehlschlägt. Bei langen Zeichenläufen mit vielen Elementen spart das spürbar Zeit, weil Cadwork nicht nach jedem Bauteil neu zeichnet.

Der Schalter ist auch im Fenster „Open MCP CAD" in Cadwork zu finden.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
anYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A3.8/5.0
Behavior4/5

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

With no annotations provided, the description carries the full burden and does well: it discloses that screen refresh is disabled during a drawing job and re-enabled afterward, even if the job fails. It also notes the switch exists in the Cadwork UI. It does not cover every edge case, but the key side effects are clearly explained.

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 four sentences long and each sentence adds value: the toggle behavior, side-effect details, performance rationale, and UI location. It is well-structured and front-loaded with the primary purpose, with only minor redundancy in the final UI-location note.

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?

For a single-parameter toggle with no output schema, the description provides sufficient behavioral and usage context to invoke the tool correctly. It explains what happens during and after a drawing job and why the toggle is useful. The main gap is the lack of explicit guidance on alternative tools, which is more a usage-guidelines concern.

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?

The input schema only provides a boolean named 'an' with no description, and schema coverage is 0%. The description compensates by clarifying that 'an' means the fast-draw feature is enabled ('Ist es an...'), effectively mapping true to on and false to off. This is helpful, though the exact true/false mapping could be more explicit.

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 clearly states a specific verb and resource: 'Schaltet das Schnellzeichnen ein oder aus' (switches fast drawing on or off). It is unambiguous about what the tool does, though it does not explicitly differentiate itself from sibling tools such as execute_cadwork_command.

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

Usage Guidelines3/5

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

The description implies when to use the tool: 'Bei langen Zeichenläufen mit vielen Elementen spart das spürbar Zeit' explains the beneficial context. However, it does not mention alternatives or state when not to use it, leaving usage guidance mostly implicit.

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