claude-kvm 2.0.0 → 2.0.2

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 +7 -1
  2. package/package.json +2 -1
package/README.md CHANGED
@@ -2,6 +2,9 @@
2
2
 
3
3
  Claude KVM is an MCP tool that controls remote desktop environments over VNC. It consists of a thin JS proxy layer (MCP server) and a platform-native Swift VNC daemon running on your macOS system.
4
4
 
5
+ [![Claude KVM Demo](https://github.com/ARAS-Workspace/claude-kvm/raw/main/test/assets/press-kit-assets-22242573195.gif)](https://github.com/ARAS-Workspace/claude-kvm/blob/main/test/README.md)
6
+ [![Claude KVM Demo Mac](https://github.com/ARAS-Workspace/claude-kvm/raw/main/test/assets/mac/press-kit-assets-mac-22256847542.gif)](https://github.com/ARAS-Workspace/claude-kvm/blob/test/e2e/mac/test/README.md)
7
+
5
8
  ## Architecture
6
9
 
7
10
  ```mermaid
@@ -136,7 +139,7 @@ Create a `.mcp.json` file in your project directory:
136
139
  "mcpServers": {
137
140
  "claude-kvm": {
138
141
  "command": "npx",
139
- "args": ["-y", "github:ARAS-Workspace/claude-kvm"],
142
+ "args": ["-y", "claude-kvm"],
140
143
  "env": {
141
144
  "VNC_HOST": "192.168.1.100",
142
145
  "VNC_PORT": "5900",
@@ -150,6 +153,9 @@ Create a `.mcp.json` file in your project directory:
150
153
  }
151
154
  ```
152
155
 
156
+ > [!NOTE]
157
+ > The tool is end-to-end tested via CI — Claude executes tasks over VNC while an independent vision model observes and verifies the results. See the [Integration Test](https://github.com/ARAS-Workspace/claude-kvm/blob/main/test/README.md) for live workflow runs, system prompts, and demo recordings.
158
+
153
159
  ### Configuration
154
160
 
155
161
  #### MCP Proxy (ENV)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claude-kvm",
3
- "version": "2.0.0",
3
+ "version": "2.0.2",
4
4
  "description": "MCP server — control remote desktops via VNC (MacOS)",
5
5
  "license": "MIT",
6
6
  "author": "Rıza Emre ARAS <r.emrearas@proton.me>",
@@ -18,6 +18,7 @@
18
18
  "apple-silicon",
19
19
  "native"
20
20
  ],
21
+ "mcpName": "io.github.ARAS-Workspace/claude-kvm",
21
22
  "main": "index.js",
22
23
  "bin": {
23
24
  "claude-kvm": "index.js"