@wonderwhy-er/desktop-commander 0.1.2 → 0.1.5

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 +34 -2
  2. package/package.json +1 -1
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 app](https://claude.ai/download) 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
 
@@ -101,6 +120,19 @@ This project extends the MCP Filesystem Server to enable:
101
120
 
102
121
  Created as part of exploring Claude MCPs: https://youtube.com/live/TlbjFDbl5Us
103
122
 
123
+ ## Contributing
124
+
125
+ If you find this project useful, please consider giving it a ⭐ star on GitHub! This helps others discover the project and encourages further development.
126
+
127
+ We welcome contributions from the community! Whether you've found a bug, have a feature request, or want to contribute code, here's how you can help:
128
+
129
+ - **Found a bug?** Open an issue at [github.com/wonderwhy-er/ClaudeComputerCommander/issues](https://github.com/wonderwhy-er/ClaudeComputerCommander/issues)
130
+ - **Have a feature idea?** Submit a feature request in the issues section
131
+ - **Want to contribute code?** Fork the repository, create a branch, and submit a pull request
132
+ - **Questions or discussions?** Start a discussion in the GitHub Discussions tab
133
+
134
+ All contributions, big or small, are greatly appreciated!
135
+
104
136
  ## License
105
137
 
106
138
  MIT
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wonderwhy-er/desktop-commander",
3
- "version": "0.1.2",
3
+ "version": "0.1.5",
4
4
  "description": "MCP server for terminal operations and file editing",
5
5
  "license": "MIT",
6
6
  "author": "Eduards Ruzga",