@c5t8fbt-wy/winforms-mcp 1.0.7 → 1.0.8
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.
|
Binary file
|
|
Binary file
|
package/index.js
CHANGED
|
@@ -13,14 +13,14 @@ const os = require('os');
|
|
|
13
13
|
|
|
14
14
|
// Verify we're on Windows
|
|
15
15
|
if (os.platform() !== 'win32') {
|
|
16
|
-
console.error('Error: @
|
|
16
|
+
console.error('Error: @c5t8fbt-wy/winforms-mcp requires Windows (x64)');
|
|
17
17
|
console.error(`Detected platform: ${os.platform()} ${os.arch()}`);
|
|
18
18
|
process.exit(1);
|
|
19
19
|
}
|
|
20
20
|
|
|
21
21
|
// Verify we're on x64
|
|
22
22
|
if (os.arch() !== 'x64') {
|
|
23
|
-
console.error('Error: @
|
|
23
|
+
console.error('Error: @c5t8fbt-wy/winforms-mcp requires Windows x64');
|
|
24
24
|
console.error(`Detected architecture: ${os.arch()}`);
|
|
25
25
|
process.exit(1);
|
|
26
26
|
}
|
|
@@ -32,7 +32,7 @@ const exePath = path.join(distDir, 'Rhombus.WinFormsMcp.Server.exe');
|
|
|
32
32
|
if (!fs.existsSync(exePath)) {
|
|
33
33
|
console.error('Error: Rhombus.WinFormsMcp.Server executable not found');
|
|
34
34
|
console.error(`Expected at: ${exePath}`);
|
|
35
|
-
console.error('\nTry reinstalling: npm install @
|
|
35
|
+
console.error('\nTry reinstalling: npm install @c5t8fbt-wy/winforms-mcp');
|
|
36
36
|
process.exit(1);
|
|
37
37
|
}
|
|
38
38
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@c5t8fbt-wy/winforms-mcp",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.8",
|
|
4
4
|
"description": "WinForms automation MCP server with headless UI automation capabilities",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"files": [
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
"README.md"
|
|
12
12
|
],
|
|
13
13
|
"bin": {
|
|
14
|
-
"winforms-mcp": "./
|
|
14
|
+
"winforms-mcp": "./index.js"
|
|
15
15
|
},
|
|
16
16
|
"scripts": {
|
|
17
17
|
"postinstall": "node install.js"
|