Skip to main content
Glama

Cut list

cut_list
Read-only

Generate a cut list for joinery builds and hand-drawn groups, listing each board's size, quantity, edges, and cutouts. Export the merged list as CSV, DXF, or SVG with board layouts on sheets.

Instructions

Cut list of joinery builds, and of groups drawn by hand: each part of a drawn group up to 50 mm thick is a board at the size it was drawn (board is its finish and thickness, no edge banding), the groups are named in drawn and the parts that are not boards in skipped [[id,name]]. Rows [part,board,qty,length,width,thickness mm,edge long+short,cutouts [x,y,w,d] mm?] merged by size, hardware, sheets per board. export_cut_list writes it as .csv, or .dxf/.svg (boards laid out on sheets). sources names the panel standards behind the boards: MDF is a dry-process fibreboard (NBR 15316), MDP a particleboard of 551 to 750 kg/m³ that holds screws better (NBR 14810).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idsNoBuild or drawn group ids (default: every build and drawn group on this storey)

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
rowsYes[part, board, qty, length, width, thickness, edge, cutouts?]
drawnNoHand-drawn builds left out
sheetsNo.dxf/.svg: [board, sheets]
skippedNo[id, name] left out
sourcesYesStandards cited, by code: [title, tier, url]
hardwareYesHardware by build: "<id>: <item>"

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4.1/5.0
Behavior5/5

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

With readOnlyHint=true already provided, the description carries a low safety burden and instead adds substantial behavioral detail: the 50 mm thickness rule, board finish and thickness semantics, no edge banding, skipped parts handling, merging criteria, and MDF/MDP material definitions. This goes well beyond the annotations and gives the agent a rich model of the tool's behavior.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness3/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is information-dense and front-loads the core subject, but it is structured as a long run-on sentence with several parenthetical asides. The MDF/MDP material details, while useful, could be separated or moved without losing clarity. It is thorough at the cost of scannability.

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

Completeness5/5

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

For a fairly complex domain, the description is remarkably complete: it covers input scope, board derivation rules, row format, merging behavior, export alternatives, and material standards. The output schema likely covers return values, and the annotations cover read-only safety, so nothing essential for correct invocation appears missing.

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 already covers the only parameter, ids, with a clear description of valid values and default behavior, so schema coverage is 100%. The main description adds domain context about what drawn groups and builds are, but it does not add direct parameter-level guidance such as id formats or selection constraints. Baseline 3 is appropriate.

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 identifies the resource clearly: a cut list for joinery builds and hand-drawn groups, and it distinguishes cut_list from export_cut_list by stating that the latter writes the list to file. However, it lacks an explicit verb like 'returns' or 'computes', leaving the exact action somewhat inferred rather than stated.

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 useful usage context: it applies to builds and drawn groups, defaults to all such groups on the storey, and points to export_cut_list for CSV/DXF/SVG output. It does not explicitly enumerate when to prefer this over other siblings, but the relationship to export_cut_list provides a clear distinction.

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