opentakeoff-mcp 0.9.40 → 0.9.41

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -311,6 +311,19 @@ sheet number (`A-101`) wherever a sheet is named.
311
311
  has nothing for `detect_rooms`/`sheet_graph`/`resolve_tag` to read: seeds
312
312
  come from you (`view_sheet`, then `one_click`). The raster path needs the
313
313
  same optional `@napi-rs/canvas` as `view_sheet`.
314
+ - **Stitching is human-only — deliberately, not a gap.** The canvas can join
315
+ 2–4 sheets split at a match line into one composite surface (#200), but no
316
+ MCP verb creates, aligns, or addresses a stitch. Joining the match line
317
+ means clicking the same drawn wall junction on both halves — a judgment
318
+ call with a worse blast radius than a bad scale, because a sloppy align
319
+ silently skews every quantity that crosses the seam. That stays behind
320
+ human eyes; it is not staged for later exposure. For a split floor: a
321
+ human stitches and aligns in the canvas, and over MCP you work each member
322
+ sheet as its own surface — a seam-crossing room belongs to the canvas.
323
+ This server also doesn't read the app's additive `stitches` payload field,
324
+ so a stitched takeoff round-tripped through `import_takeoff` →
325
+ `export_takeoff` comes back without its stitches — when a stitch is in
326
+ play, the app's own save is the one to keep.
314
327
  - `load_plan` replaces the session by default; `merge: true` builds a multi-document working set (#152). Reloading a merged file is refused — reload = replace, deliberately.
315
328
  - The takeoff lives in memory. `export_takeoff` (the app's exact save payload,
316
329
  nothing lost in translation) and `export_marked_pdf` (the reviewable marked
@@ -10639,7 +10639,7 @@ function applyStagedTools(server, registered) {
10639
10639
  // package.json
10640
10640
  var package_default = {
10641
10641
  name: "opentakeoff-mcp",
10642
- version: "0.9.40",
10642
+ version: "0.9.41",
10643
10643
  mcpName: "io.github.Kentucky-ai/opentakeoff",
10644
10644
  type: "module",
10645
10645
  description: "OpenTakeoff MCP server \u2014 drive the takeoff engine from your MCP client over stdio.",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "opentakeoff-mcp",
3
- "version": "0.9.40",
3
+ "version": "0.9.41",
4
4
  "mcpName": "io.github.Kentucky-ai/opentakeoff",
5
5
  "type": "module",
6
6
  "description": "OpenTakeoff MCP server — drive the takeoff engine from your MCP client over stdio.",