-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
105 lines (105 loc) · 2.53 KB
/
package.json
File metadata and controls
105 lines (105 loc) · 2.53 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "@uarlouski/ssh-mcp-server",
"version": "1.5.0",
"description": "MCP server enabling AI assistants to securely execute SSH commands, transfer files via SFTP, manage port forwarding, and use parameterized command templates with comprehensive security controls",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"ssh-mcp-server": "dist/index.js"
},
"files": [
"dist/**/*.js",
"dist/**/*.d.ts",
"dist/**/*.d.ts.map",
"!dist/**/*.test.*",
"!dist/**/__tests__/**",
"!dist/**/*-backup.*",
"config.example.json",
"README.md",
"LICENSE",
"CHANGELOG.md"
],
"scripts": {
"build": "tsc",
"watch": "tsc --watch",
"start": "node dist/index.js",
"dev": "tsc && node dist/index.js",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run build"
},
"keywords": [
"mcp",
"mcp-server",
"model-context-protocol",
"ssh",
"ssh2",
"sftp",
"file-transfer",
"remote-execution",
"port-forwarding",
"ssh-tunnel",
"devops",
"devops-automation",
"automation",
"remote-commands",
"ssh-client",
"ssh-automation",
"connection-pooling",
"kubernetes",
"infrastructure",
"ai-tools",
"ai-ssh-tools",
"llm-tools",
"llm-ssh-integration",
"claude",
"anthropic",
"anthropic-mcp",
"copilot",
"copilot-ssh",
"github-copilot",
"ai-assistant",
"remote-file-management",
"secure-ssh",
"command-templates",
"templates",
"macros",
"parameterized-commands",
"docker-templates",
"kubernetes-templates"
],
"author": "Uladzislau Arlouski <uarlouski@gmail.com>",
"license": "Apache 2.0",
"repository": {
"type": "git",
"url": "https://github.com/uarlouski/ssh-mcp-server.git"
},
"homepage": "https://github.com/uarlouski/ssh-mcp-server#readme",
"bugs": {
"url": "https://github.com/uarlouski/ssh-mcp-server/issues"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.27.1",
"picomatch": "^4.0.3",
"shell-quote": "^1.8.3",
"ssh-config": "^5.0.4",
"ssh2": "^1.15.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/jest": "^29.5.0",
"@types/node": "^20.0.0",
"@types/picomatch": "^4.0.2",
"@types/shell-quote": "^1.7.5",
"@types/ssh2": "^1.15.0",
"jest": "^29.7.0",
"ts-jest": "^29.1.0",
"typescript": "^5.3.0"
},
"engines": {
"node": ">=18.0.0"
}
}