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

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 d58eb3b77d4b0d2e8a1fd189bbe06f8a786bbd34 at 2026-07-26T15:48:51.530Z. Source: https://github.com/ecto/vcad
9
+ Built from e8c30217ef94fd492ae13caee599b581d8334d34 at 2026-07-26T17:13:18.437Z. Source: https://github.com/ecto/vcad
package/index.mjs CHANGED
@@ -30247,11 +30247,6 @@ var init_ui_store = __esm({
30247
30247
  raytraceEdgeCreaseWidth: 0.75,
30248
30248
  raytraceEdgeBoundaryWidth: 1.25,
30249
30249
  raytraceEdgeSoftness: 1.5,
30250
- raytraceAoEnabled: true,
30251
- raytraceAoRadius: 0.3,
30252
- raytraceAoIntensity: 1,
30253
- raytraceAoBias: 1e-3,
30254
- raytraceAoSampleCount: 16,
30255
30250
  toolbarExpanded: persistedToolbarExpanded,
30256
30251
  toolbarTab: "create",
30257
30252
  sidebarPane: "tree",
@@ -30356,11 +30351,6 @@ var init_ui_store = __esm({
30356
30351
  setRaytraceEdgeCreaseWidth: (width) => set({ raytraceEdgeCreaseWidth: width }),
30357
30352
  setRaytraceEdgeBoundaryWidth: (width) => set({ raytraceEdgeBoundaryWidth: width }),
30358
30353
  setRaytraceEdgeSoftness: (softness) => set({ raytraceEdgeSoftness: softness }),
30359
- setRaytraceAoEnabled: (enabled) => set({ raytraceAoEnabled: enabled }),
30360
- setRaytraceAoRadius: (radius) => set({ raytraceAoRadius: radius }),
30361
- setRaytraceAoIntensity: (intensity) => set({ raytraceAoIntensity: intensity }),
30362
- setRaytraceAoBias: (bias) => set({ raytraceAoBias: bias }),
30363
- setRaytraceAoSampleCount: (count) => set({ raytraceAoSampleCount: count }),
30364
30354
  setToolbarExpanded: (expanded) => {
30365
30355
  try {
30366
30356
  localStorage.setItem("vcad:toolbarExpanded", String(expanded));
@@ -41050,6 +41040,20 @@ var init_CHANGELOG = __esm({
41050
41040
  CHANGELOG_default = {
41051
41041
  $schema: "./changelog.schema.json",
41052
41042
  entries: [
41043
+ {
41044
+ id: "2026-07-26-viewport-path-tracer",
41045
+ version: "0.9.4",
41046
+ date: "2026-07-26",
41047
+ category: "feat",
41048
+ title: "The raytrace viewport is a real path tracer",
41049
+ summary: "The viewport now shades with the same BSDF, materials and lighting as --photoreal: multi-bounce global illumination, MIS area lights, clearcoat and brushed-metal anisotropy, so a part looks the same in the app as in a render.",
41050
+ features: [
41051
+ "rendering",
41052
+ "raytracing",
41053
+ "viewport",
41054
+ "materials"
41055
+ ]
41056
+ },
41053
41057
  {
41054
41058
  id: "2026-07-26-swept-and-all-pairs-clearance",
41055
41059
  version: "0.9.4",
@@ -80783,8 +80787,8 @@ var init_server3 = __esm({
80783
80787
  init_order_feed();
80784
80788
  init_animate();
80785
80789
  PKG_VERSION = (() => {
80786
- if ("0.9.4-main.46") {
80787
- return "0.9.4-main.46";
80790
+ if ("0.9.4-main.47") {
80791
+ return "0.9.4-main.47";
80788
80792
  }
80789
80793
  try {
80790
80794
  const req = createRequire2(import.meta.url);
@@ -80793,8 +80797,8 @@ var init_server3 = __esm({
80793
80797
  return "0.0.0";
80794
80798
  }
80795
80799
  })();
80796
- BUILD_SHA = "d58eb3b77d4b0d2e8a1fd189bbe06f8a786bbd34";
80797
- BUILD_TIME = "2026-07-26T15:48:51.530Z";
80800
+ BUILD_SHA = "e8c30217ef94fd492ae13caee599b581d8334d34";
80801
+ BUILD_TIME = "2026-07-26T17:13:18.437Z";
80798
80802
  SHORT_SHA = BUILD_SHA === "unknown" ? "unknown" : BUILD_SHA.slice(0, 7);
80799
80803
  VERSION_WITH_BUILD = SHORT_SHA === "unknown" ? PKG_VERSION : `${PKG_VERSION}+${SHORT_SHA}`;
80800
80804
  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.46",
3
+ "version": "0.9.4-main.47",
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": "d58eb3b77d4b0d2e8a1fd189bbe06f8a786bbd34",
23
- "builtAt": "2026-07-26T15:48:51.530Z"
22
+ "sha": "e8c30217ef94fd492ae13caee599b581d8334d34",
23
+ "builtAt": "2026-07-26T17:13:18.437Z"
24
24
  }
25
25
  }
Binary file