@vcad/mcp 0.9.4-main.45 → 0.9.4-main.46

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
@@ -6,4 +6,4 @@ vcad's MCP server as a self-contained bundle (server + BRep kernel WASM).
6
6
  { "mcpServers": { "vcad": { "command": "npx", "args": ["-y", "@vcad/mcp"] } } }
7
7
  ```
8
8
 
9
- Built from 565c908d4b82566c413bfab71c11f2c2bc6c6163 at 2026-07-26T15:43:49.151Z. Source: https://github.com/ecto/vcad
9
+ Built from d58eb3b77d4b0d2e8a1fd189bbe06f8a786bbd34 at 2026-07-26T15:48:51.530Z. Source: https://github.com/ecto/vcad
package/index.mjs CHANGED
@@ -41099,6 +41099,22 @@ var init_CHANGELOG = __esm({
41099
41099
  "rendering"
41100
41100
  ]
41101
41101
  },
41102
+ {
41103
+ id: "2026-07-26-raytrace-tlas",
41104
+ version: "0.9.4",
41105
+ date: "2026-07-26",
41106
+ category: "perf",
41107
+ title: "Ray tracing scales to many-part assemblies",
41108
+ summary: "A two-level acceleration structure culls whole parts per ray and shares one hierarchy across repeated instances: 6.2x faster on a 216-part assembly.",
41109
+ features: [
41110
+ "raytrace",
41111
+ "render",
41112
+ "assembly"
41113
+ ],
41114
+ mcpTools: [
41115
+ "render_view"
41116
+ ]
41117
+ },
41102
41118
  {
41103
41119
  id: "2026-07-26-raytrace-mesh-parts",
41104
41120
  version: "0.9.4",
@@ -58362,6 +58378,7 @@ async function setParameters(input, engine) {
58362
58378
  }
58363
58379
  const doc = getSession(documentId);
58364
58380
  doc.parameters ??= {};
58381
+ const params = doc.parameters;
58365
58382
  const entries = Object.entries(updates);
58366
58383
  const unknown2 = [];
58367
58384
  for (const [name, value] of entries) {
@@ -58379,9 +58396,9 @@ async function setParameters(input, engine) {
58379
58396
  }
58380
58397
  const referenced = referencedNames(doc);
58381
58398
  const noEffect = entries.map(([name]) => name).filter((name) => !referenced.has(name)).map((name) => {
58382
- const value = doc.parameters[name].value;
58399
+ const value = params[name].value;
58383
58400
  const inputs = typeof value === "string" ? [...new Set(value.match(/[A-Za-z_]\w*/g) ?? [])].filter(
58384
- (v) => v in doc.parameters && referenced.has(v)
58401
+ (v) => v in params && referenced.has(v)
58385
58402
  ) : [];
58386
58403
  return {
58387
58404
  name,
@@ -80766,8 +80783,8 @@ var init_server3 = __esm({
80766
80783
  init_order_feed();
80767
80784
  init_animate();
80768
80785
  PKG_VERSION = (() => {
80769
- if ("0.9.4-main.45") {
80770
- return "0.9.4-main.45";
80786
+ if ("0.9.4-main.46") {
80787
+ return "0.9.4-main.46";
80771
80788
  }
80772
80789
  try {
80773
80790
  const req = createRequire2(import.meta.url);
@@ -80776,8 +80793,8 @@ var init_server3 = __esm({
80776
80793
  return "0.0.0";
80777
80794
  }
80778
80795
  })();
80779
- BUILD_SHA = "565c908d4b82566c413bfab71c11f2c2bc6c6163";
80780
- BUILD_TIME = "2026-07-26T15:43:49.151Z";
80796
+ BUILD_SHA = "d58eb3b77d4b0d2e8a1fd189bbe06f8a786bbd34";
80797
+ BUILD_TIME = "2026-07-26T15:48:51.530Z";
80781
80798
  SHORT_SHA = BUILD_SHA === "unknown" ? "unknown" : BUILD_SHA.slice(0, 7);
80782
80799
  VERSION_WITH_BUILD = SHORT_SHA === "unknown" ? PKG_VERSION : `${PKG_VERSION}+${SHORT_SHA}`;
80783
80800
  INSTANCE_ID = randomUUID6().slice(0, 8);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vcad/mcp",
3
- "version": "0.9.4-main.45",
3
+ "version": "0.9.4-main.46",
4
4
  "description": "vcad MCP server — parametric CAD + PCB design tools for AI agents (self-contained: bundled server + kernel WASM)",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -19,7 +19,7 @@
19
19
  },
20
20
  "homepage": "https://vcad.io",
21
21
  "vcadBuild": {
22
- "sha": "565c908d4b82566c413bfab71c11f2c2bc6c6163",
23
- "builtAt": "2026-07-26T15:43:49.151Z"
22
+ "sha": "d58eb3b77d4b0d2e8a1fd189bbe06f8a786bbd34",
23
+ "builtAt": "2026-07-26T15:48:51.530Z"
24
24
  }
25
25
  }
Binary file