@vcad/mcp 0.9.4-main.41 → 0.9.4-main.42
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 +19 -4
- package/package.json +3 -3
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 5288a75b111969d99b834a3df1c88e017376b921 at 2026-07-26T14:46:06.764Z. Source: https://github.com/ecto/vcad
|
package/index.mjs
CHANGED
|
@@ -41144,6 +41144,21 @@ var init_CHANGELOG = __esm({
|
|
|
41144
41144
|
"export_cad"
|
|
41145
41145
|
]
|
|
41146
41146
|
},
|
|
41147
|
+
{
|
|
41148
|
+
id: "2026-07-26-isometric-handedness",
|
|
41149
|
+
version: "0.9.4",
|
|
41150
|
+
date: "2026-07-26",
|
|
41151
|
+
category: "fix",
|
|
41152
|
+
title: "Isometric renders are no longer mirrored",
|
|
41153
|
+
summary: "The default isometric view used a left-handed screen basis, so every static render was a mirror image of the app viewport; it now matches.",
|
|
41154
|
+
features: [
|
|
41155
|
+
"rendering",
|
|
41156
|
+
"drafting"
|
|
41157
|
+
],
|
|
41158
|
+
mcpTools: [
|
|
41159
|
+
"render_view"
|
|
41160
|
+
]
|
|
41161
|
+
},
|
|
41147
41162
|
{
|
|
41148
41163
|
id: "2026-07-26-flat-pattern-from-solid",
|
|
41149
41164
|
version: "0.9.4",
|
|
@@ -80659,8 +80674,8 @@ var init_server3 = __esm({
|
|
|
80659
80674
|
init_order_feed();
|
|
80660
80675
|
init_animate();
|
|
80661
80676
|
PKG_VERSION = (() => {
|
|
80662
|
-
if ("0.9.4-main.
|
|
80663
|
-
return "0.9.4-main.
|
|
80677
|
+
if ("0.9.4-main.42") {
|
|
80678
|
+
return "0.9.4-main.42";
|
|
80664
80679
|
}
|
|
80665
80680
|
try {
|
|
80666
80681
|
const req = createRequire2(import.meta.url);
|
|
@@ -80669,8 +80684,8 @@ var init_server3 = __esm({
|
|
|
80669
80684
|
return "0.0.0";
|
|
80670
80685
|
}
|
|
80671
80686
|
})();
|
|
80672
|
-
BUILD_SHA = "
|
|
80673
|
-
BUILD_TIME = "2026-07-26T14:
|
|
80687
|
+
BUILD_SHA = "5288a75b111969d99b834a3df1c88e017376b921";
|
|
80688
|
+
BUILD_TIME = "2026-07-26T14:46:06.764Z";
|
|
80674
80689
|
SHORT_SHA = BUILD_SHA === "unknown" ? "unknown" : BUILD_SHA.slice(0, 7);
|
|
80675
80690
|
VERSION_WITH_BUILD = SHORT_SHA === "unknown" ? PKG_VERSION : `${PKG_VERSION}+${SHORT_SHA}`;
|
|
80676
80691
|
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.42",
|
|
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-26T14:
|
|
22
|
+
"sha": "5288a75b111969d99b834a3df1c88e017376b921",
|
|
23
|
+
"builtAt": "2026-07-26T14:46:06.764Z"
|
|
24
24
|
}
|
|
25
25
|
}
|