@wonderwhy-er/desktop-commander 0.2.18-alpha.14 → 0.2.18-alpha.15
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/dist/setup-claude-server.js +2 -3
- package/dist/setup.log +21 -0
- package/package.json +1 -1
|
@@ -641,9 +641,7 @@ async function restartClaude() {
|
|
|
641
641
|
// Main function to export for ESM compatibility
|
|
642
642
|
export default async function setup() {
|
|
643
643
|
// Parse command line arguments for version/tag
|
|
644
|
-
|
|
645
|
-
// or: npx -y -p @wonderwhy-er/desktop-commander setup alpha
|
|
646
|
-
const versionArg = process.argv[2]; // argv[0]=node, argv[1]=script, argv[2]=version/tag
|
|
644
|
+
const versionArg = process.argv[3]; // argv[0]=node, argv[1]=script, argv[2]=version/tag
|
|
647
645
|
|
|
648
646
|
|
|
649
647
|
|
|
@@ -802,6 +800,7 @@ export default async function setup() {
|
|
|
802
800
|
// Standard configuration without debug
|
|
803
801
|
if (isNpx) {
|
|
804
802
|
const packageSpec = getPackageSpec(versionArg);
|
|
803
|
+
console.log("Command args: ", packageSpec);
|
|
805
804
|
serverConfig = {
|
|
806
805
|
"command": isWindows ? "npx.cmd" : "npx",
|
|
807
806
|
"args": [
|
package/dist/setup.log
CHANGED
|
@@ -166,3 +166,24 @@ The server is available as "desktop-commander" in Claude's MCP server list
|
|
|
166
166
|
2025-10-23T10:20:49.913Z - or join our community: https://discord.com/invite/kQ27sNnZr7
|
|
167
167
|
|
|
168
168
|
|
|
169
|
+
2025-10-23T10:23:37.739Z - ✅ Desktop Commander MCP v0.2.18-alpha.14 successfully added to Claude’s configuration.
|
|
170
|
+
2025-10-23T10:23:37.739Z - Configuration location: /Users/fiberta/Library/Application Support/Claude/claude_desktop_config.json
|
|
171
|
+
2025-10-23T10:23:40.846Z -
|
|
172
|
+
✅ Claude has been restarted automatically!
|
|
173
|
+
2025-10-23T10:23:40.867Z -
|
|
174
|
+
✅ Installation successfully completed! Thank you for using Desktop Commander!
|
|
175
|
+
|
|
176
|
+
2025-10-23T10:23:40.867Z -
|
|
177
|
+
The server is available as "desktop-commander" in Claude's MCP server list
|
|
178
|
+
2025-10-23T10:23:40.867Z - Future updates will install automatically — no need to run this setup again.
|
|
179
|
+
|
|
180
|
+
|
|
181
|
+
2025-10-23T10:23:40.867Z - 🤔 Need help or have feedback? Happy to jump on a quick call:
|
|
182
|
+
|
|
183
|
+
|
|
184
|
+
2025-10-23T10:23:40.867Z - https://calendar.app.google/SHMNZN5MJznJWC5A7
|
|
185
|
+
|
|
186
|
+
|
|
187
|
+
2025-10-23T10:23:40.867Z - or join our community: https://discord.com/invite/kQ27sNnZr7
|
|
188
|
+
|
|
189
|
+
|
package/package.json
CHANGED