-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 923 Bytes
/
package.json
File metadata and controls
45 lines (45 loc) · 923 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{
"name": "claude-kvm",
"version": "2.0.11",
"description": "MCP server — control remote desktops via VNC (MacOS)",
"license": "MIT",
"author": "Rıza Emre ARAS <r.emrearas@proton.me>",
"repository": {
"type": "git",
"url": "git+https://github.com/ARAS-Workspace/claude-kvm.git"
},
"keywords": [
"mcp",
"vnc",
"kvm",
"claude",
"remote-desktop",
"automation",
"apple-silicon",
"native"
],
"mcpName": "io.github.ARAS-Workspace/claude-kvm",
"main": "index.js",
"bin": {
"claude-kvm": "index.js"
},
"files": [
"index.js",
"tools/",
"LICENSE",
"README.md"
],
"type": "module",
"scripts": {
"start": "node index.js"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.26.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@anthropic-ai/sdk": "^0.52.0",
"@types/node": "^25.2.3",
"dotenv": "^17.3.1"
}
}