@wonderwhy-er/desktop-commander 0.1.1 → 0.1.3

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.
Files changed (2) hide show
  1. package/README.md +21 -2
  2. package/package.json +3 -2
package/README.md CHANGED
@@ -22,8 +22,27 @@ This server that allows Claude desktop app to execute long-running terminal comm
22
22
  - Multiple file support
23
23
  - Pattern-based replacements
24
24
 
25
- ## Setup
25
+ ## Installation
26
+ First, ensure you've downloaded and installed the [Claude Desktop](https://claude.ai/download app) and you have [npm installed](https://docs.npmjs.com/downloading-and-installing-node-js-and-npm).
27
+
28
+
29
+ ### Option 1: Install from npx
30
+ Next, add this entry to your claude_desktop_config.json (on Mac, found at ~/Library/Application\ Support/Claude/claude_desktop_config.json):
31
+ ```json
32
+ {
33
+ "mcpServers": {
34
+ "desktop-commander": {
35
+ "command": "npx",
36
+ "args": [
37
+ "-y",
38
+ "@wonderwhy-er/desktop-commander"
39
+ ]
40
+ }
41
+ }
42
+ }
43
+ ```
26
44
 
45
+ ### Option 2: Checkout locally
27
46
  1. Clone and build:
28
47
  ```bash
29
48
  git clone https://github.com/wonderwhy-er/ClaudeComputerCommander.git
@@ -35,7 +54,7 @@ The setup command will:
35
54
  - Install dependencies
36
55
  - Build the server
37
56
  - Configure Claude's desktop app
38
- - Add MCP servers to Claude's config
57
+ - Add MCP servers to Claude's config if needed
39
58
 
40
59
  ## Usage
41
60
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wonderwhy-er/desktop-commander",
3
- "version": "0.1.1",
3
+ "version": "0.1.3",
4
4
  "description": "MCP server for terminal operations and file editing",
5
5
  "license": "MIT",
6
6
  "author": "Eduards Ruzga",
@@ -22,7 +22,8 @@
22
22
  "test": "node test/test.js",
23
23
  "test:watch": "nodemon test/test.js",
24
24
  "link:local": "npm run build && npm link",
25
- "unlink:local": "npm unlink"
25
+ "unlink:local": "npm unlink",
26
+ "inspector": "npx @modelcontextprotocol/inspector dist/index.js"
26
27
  },
27
28
  "publishConfig": {
28
29
  "access": "public"