@wonderwhy-er/desktop-commander 0.1.12 → 0.1.14
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 +2 -7
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -25,13 +25,8 @@ 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
|
-
### Options 1: Install with npx
|
|
29
|
-
Just run this command in terminal
|
|
30
|
-
```bash
|
|
31
|
-
npx -p @wonderwhy-er/desktop-commander node setup-claude-server.js
|
|
32
|
-
```
|
|
33
28
|
|
|
34
|
-
### Option
|
|
29
|
+
### Option 1: Install from npx
|
|
35
30
|
Next, add this entry to your claude_desktop_config.json (on Mac, found at ~/Library/Application\ Support/Claude/claude_desktop_config.json):
|
|
36
31
|
```json
|
|
37
32
|
{
|
|
@@ -47,7 +42,7 @@ Next, add this entry to your claude_desktop_config.json (on Mac, found at ~/Libr
|
|
|
47
42
|
}
|
|
48
43
|
```
|
|
49
44
|
|
|
50
|
-
### Option
|
|
45
|
+
### Option 2: Checkout locally
|
|
51
46
|
1. Clone and build:
|
|
52
47
|
```bash
|
|
53
48
|
git clone https://github.com/wonderwhy-er/ClaudeComputerCommander.git
|
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.14",
|
|
4
4
|
"description": "MCP server for terminal operations and file editing",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "Eduards Ruzga",
|
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
"bugs": "https://github.com/wonderwhy-er/ClaudeComputerCommander/issues",
|
|
9
9
|
"type": "module",
|
|
10
10
|
"bin": {
|
|
11
|
-
"desktop-commander": "dist/index.js"
|
|
11
|
+
"mcp-desktop-commander": "dist/index.js"
|
|
12
12
|
},
|
|
13
13
|
"files": [
|
|
14
14
|
"dist"
|