@vcad/mcp 0.9.4-main.44 → 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 +17 -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",
|
|
@@ -80753,8 +80766,8 @@ var init_server3 = __esm({
|
|
|
80753
80766
|
init_order_feed();
|
|
80754
80767
|
init_animate();
|
|
80755
80768
|
PKG_VERSION = (() => {
|
|
80756
|
-
if ("0.9.4-main.
|
|
80757
|
-
return "0.9.4-main.
|
|
80769
|
+
if ("0.9.4-main.45") {
|
|
80770
|
+
return "0.9.4-main.45";
|
|
80758
80771
|
}
|
|
80759
80772
|
try {
|
|
80760
80773
|
const req = createRequire2(import.meta.url);
|
|
@@ -80763,8 +80776,8 @@ var init_server3 = __esm({
|
|
|
80763
80776
|
return "0.0.0";
|
|
80764
80777
|
}
|
|
80765
80778
|
})();
|
|
80766
|
-
BUILD_SHA = "
|
|
80767
|
-
BUILD_TIME = "2026-07-26T15:
|
|
80779
|
+
BUILD_SHA = "565c908d4b82566c413bfab71c11f2c2bc6c6163";
|
|
80780
|
+
BUILD_TIME = "2026-07-26T15:43:49.151Z";
|
|
80768
80781
|
SHORT_SHA = BUILD_SHA === "unknown" ? "unknown" : BUILD_SHA.slice(0, 7);
|
|
80769
80782
|
VERSION_WITH_BUILD = SHORT_SHA === "unknown" ? PKG_VERSION : `${PKG_VERSION}+${SHORT_SHA}`;
|
|
80770
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
|