@vcad/mcp 0.9.4-main.43 → 0.9.4-main.45
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 +1 -1
- package/index.mjs +30 -4
- package/package.json +3 -3
- package/vcad_kernel_wasm_bg.wasm +0 -0
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
|
|
9
|
+
Built from 565c908d4b82566c413bfab71c11f2c2bc6c6163 at 2026-07-26T15:43:49.151Z. Source: https://github.com/ecto/vcad
|
package/index.mjs
CHANGED
|
@@ -41126,6 +41126,19 @@ var init_CHANGELOG = __esm({
|
|
|
41126
41126
|
"materials"
|
|
41127
41127
|
]
|
|
41128
41128
|
},
|
|
41129
|
+
{
|
|
41130
|
+
id: "2026-07-26-photoreal-denoiser",
|
|
41131
|
+
version: "0.9.4",
|
|
41132
|
+
date: "2026-07-26",
|
|
41133
|
+
category: "perf",
|
|
41134
|
+
title: "Edge-aware denoising for --photoreal",
|
|
41135
|
+
summary: "Photoreal renders are now denoised by default, reaching near-reference quality from ~32 samples per pixel instead of ~1024. Pass --no-denoise for ground-truth renders.",
|
|
41136
|
+
features: [
|
|
41137
|
+
"rendering",
|
|
41138
|
+
"raytracing",
|
|
41139
|
+
"cli"
|
|
41140
|
+
]
|
|
41141
|
+
},
|
|
41129
41142
|
{
|
|
41130
41143
|
id: "2026-07-26-parametric-loon-datums",
|
|
41131
41144
|
version: "0.9.4",
|
|
@@ -41332,6 +41345,19 @@ var init_CHANGELOG = __esm({
|
|
|
41332
41345
|
"create_cad_loon"
|
|
41333
41346
|
]
|
|
41334
41347
|
},
|
|
41348
|
+
{
|
|
41349
|
+
id: "2026-07-26-anisotropic-roughness",
|
|
41350
|
+
version: "0.9.4",
|
|
41351
|
+
date: "2026-07-26",
|
|
41352
|
+
category: "feat",
|
|
41353
|
+
title: "Brushed and turned finishes render correctly",
|
|
41354
|
+
summary: "Materials gain an anisotropy value, and the photoreal path tracer orients the stretched highlight by the BRep's own surface parameterisation, so turned shafts and bored holes get the circumferential grain they have in life.",
|
|
41355
|
+
features: [
|
|
41356
|
+
"rendering",
|
|
41357
|
+
"raytracing",
|
|
41358
|
+
"materials"
|
|
41359
|
+
]
|
|
41360
|
+
},
|
|
41335
41361
|
{
|
|
41336
41362
|
id: "2026-07-25-via-layer-spans-in-fab-export",
|
|
41337
41363
|
version: "0.9.4",
|
|
@@ -80740,8 +80766,8 @@ var init_server3 = __esm({
|
|
|
80740
80766
|
init_order_feed();
|
|
80741
80767
|
init_animate();
|
|
80742
80768
|
PKG_VERSION = (() => {
|
|
80743
|
-
if ("0.9.4-main.
|
|
80744
|
-
return "0.9.4-main.
|
|
80769
|
+
if ("0.9.4-main.45") {
|
|
80770
|
+
return "0.9.4-main.45";
|
|
80745
80771
|
}
|
|
80746
80772
|
try {
|
|
80747
80773
|
const req = createRequire2(import.meta.url);
|
|
@@ -80750,8 +80776,8 @@ var init_server3 = __esm({
|
|
|
80750
80776
|
return "0.0.0";
|
|
80751
80777
|
}
|
|
80752
80778
|
})();
|
|
80753
|
-
BUILD_SHA = "
|
|
80754
|
-
BUILD_TIME = "2026-07-26T15:
|
|
80779
|
+
BUILD_SHA = "565c908d4b82566c413bfab71c11f2c2bc6c6163";
|
|
80780
|
+
BUILD_TIME = "2026-07-26T15:43:49.151Z";
|
|
80755
80781
|
SHORT_SHA = BUILD_SHA === "unknown" ? "unknown" : BUILD_SHA.slice(0, 7);
|
|
80756
80782
|
VERSION_WITH_BUILD = SHORT_SHA === "unknown" ? PKG_VERSION : `${PKG_VERSION}+${SHORT_SHA}`;
|
|
80757
80783
|
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.
|
|
3
|
+
"version": "0.9.4-main.45",
|
|
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": "
|
|
23
|
-
"builtAt": "2026-07-26T15:
|
|
22
|
+
"sha": "565c908d4b82566c413bfab71c11f2c2bc6c6163",
|
|
23
|
+
"builtAt": "2026-07-26T15:43:49.151Z"
|
|
24
24
|
}
|
|
25
25
|
}
|
package/vcad_kernel_wasm_bg.wasm
CHANGED
|
Binary file
|