@wonderwhy-er/desktop-commander 0.1.15 → 0.1.17
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 +11 -3
- package/dist/setup.log +6 -0
- package/package.json +3 -2
package/README.md
CHANGED
|
@@ -25,9 +25,15 @@ This server that allows Claude desktop app to execute long-running terminal comm
|
|
|
25
25
|
## Installation
|
|
26
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
27
|
|
|
28
|
+
### Option 1: Install trough npx
|
|
29
|
+
Just run this in terminal
|
|
30
|
+
```
|
|
31
|
+
npx @wonderwhy-er/desktop-commander setup
|
|
32
|
+
```
|
|
33
|
+
Restart Claude if running
|
|
28
34
|
|
|
29
|
-
### Option
|
|
30
|
-
|
|
35
|
+
### Option 2: Add to claude_desktop_config by hand
|
|
36
|
+
Add this entry to your claude_desktop_config.json (on Mac, found at ~/Library/Application\ Support/Claude/claude_desktop_config.json):
|
|
31
37
|
```json
|
|
32
38
|
{
|
|
33
39
|
"mcpServers": {
|
|
@@ -41,14 +47,16 @@ Next, add this entry to your claude_desktop_config.json (on Mac, found at ~/Libr
|
|
|
41
47
|
}
|
|
42
48
|
}
|
|
43
49
|
```
|
|
50
|
+
Restart Claude if running
|
|
44
51
|
|
|
45
|
-
### Option
|
|
52
|
+
### Option 3: Checkout locally
|
|
46
53
|
1. Clone and build:
|
|
47
54
|
```bash
|
|
48
55
|
git clone https://github.com/wonderwhy-er/ClaudeComputerCommander.git
|
|
49
56
|
cd ClaudeComputerCommander
|
|
50
57
|
npm run setup
|
|
51
58
|
```
|
|
59
|
+
Restart Claude if running
|
|
52
60
|
|
|
53
61
|
The setup command will:
|
|
54
62
|
- Install dependencies
|
package/dist/setup.log
CHANGED
|
@@ -24,3 +24,9 @@ To use the servers:
|
|
|
24
24
|
To use the servers:
|
|
25
25
|
1. Restart Claude if it's currently running
|
|
26
26
|
2. The servers will be available in Claude's MCP server list
|
|
27
|
+
2025-01-09T14:16:00.862Z - Successfully added MCP servers to Claude configuration!
|
|
28
|
+
2025-01-09T14:16:00.864Z - Configuration location: /Users/eduardruzga/Library/Application Support/Claude/claude_desktop_config.json
|
|
29
|
+
2025-01-09T14:16:00.864Z -
|
|
30
|
+
To use the servers:
|
|
31
|
+
1. Restart Claude if it's currently running
|
|
32
|
+
2. The servers will be available in Claude's MCP server list
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wonderwhy-er/desktop-commander",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.17",
|
|
4
4
|
"description": "MCP server for terminal operations and file editing",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "Eduards Ruzga",
|
|
@@ -8,7 +8,8 @@
|
|
|
8
8
|
"bugs": "https://github.com/wonderwhy-er/ClaudeComputerCommander/issues",
|
|
9
9
|
"type": "module",
|
|
10
10
|
"bin": {
|
|
11
|
-
"
|
|
11
|
+
"desktop-commander": "dist/index.js",
|
|
12
|
+
"setup": "dist/setup-claude-server.js"
|
|
12
13
|
},
|
|
13
14
|
"files": [
|
|
14
15
|
"dist"
|