-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.08 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.08 KB
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
46
{
"name": "mcp-ssh",
"version": "1.0.0",
"description": "SSH连接管理的MCP工具,支持自动记忆凭证、服务器列表和后台操作",
"main": "dist/index.js",
"type": "module",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "ts-node-dev --respawn src/index.ts",
"test": "jest",
"register": "cursor tool register ssh-mcp -p dist/index.js",
"unregister": "cursor tool unregister ssh-mcp"
},
"keywords": [
"mcp",
"ssh",
"terminal",
"connection",
"remote",
"server",
"tools",
"ai"
],
"author": "",
"license": "ISC",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.6.1",
"@types/node": "^20.0.0",
"dotenv": "^16.0.3",
"keytar": "^7.9.0",
"lokijs": "^1.5.12",
"node-ssh": "^13.1.0",
"ssh2": "^1.14.0",
"typescript": "^5.0.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/keytar": "^4.4.0",
"@types/lokijs": "^1.5.14",
"@types/node-ssh": "^7.0.6",
"@types/ssh2": "^1.15.4",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0"
}
}