forked from ohare93/mcp-ssh-sre
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.04 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.04 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
47
{
"name": "mcp-ssh-sre",
"version": "2.0.2",
"description": "MCP server for SRE operations across multiple platforms via SSH",
"main": "dist/index.js",
"type": "module",
"scripts": {
"build": "tsc",
"dev": "tsx src/index.ts",
"dev:http": "tsx src/http-server.ts",
"start": "node dist/index.js",
"start:http": "node dist/http-server.js",
"test": "vitest run",
"test:watch": "vitest",
"test:ui": "vitest --ui"
},
"keywords": [
"mcp",
"ssh",
"sre",
"devops",
"unraid",
"linux",
"docker",
"monitoring"
],
"author": "",
"license": "ISC",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.4",
"cors": "^2.8.5",
"dotenv": "^16.4.7",
"express": "^5.1.0",
"node-ssh": "^13.2.0",
"zod": "^3.24.1"
},
"devDependencies": {
"@types/cors": "^2.8.19",
"@types/express": "^5.0.3",
"@types/node": "^22.10.5",
"@types/ssh2": "^1.15.1",
"@vitest/ui": "^3.2.4",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"vitest": "^3.2.4"
}
}