-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.51 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.51 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
{
"name": "@aiondadotcom/mcp-ssh",
"version": "1.3.8",
"description": "MCP Agent for managing SSH hosts - A Model Context Protocol server for SSH operations",
"main": "server.mjs",
"bin": {
"mcp-ssh": "bin/mcp-ssh.js"
},
"type": "module",
"engines": {
"node": ">=20"
},
"scripts": {
"start": "node bin/mcp-ssh.js",
"dev": "node bin/mcp-ssh.js",
"build": "echo \"Build skipped\"",
"build:dxt": "./scripts/build-dxt.sh",
"test": "vitest run --coverage",
"test:watch": "vitest",
"prepublishOnly": "npm run test",
"version": "git add -A",
"postversion": "git push && git push --tags"
},
"keywords": [
"mcp",
"ssh",
"agent",
"model-context-protocol",
"claude",
"ai",
"remote",
"server"
],
"author": "aionda.com",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/aiondadotcom/mcp-ssh.git"
},
"homepage": "https://github.com/aiondadotcom/mcp-ssh",
"bugs": {
"url": "https://github.com/aiondadotcom/mcp-ssh/issues"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.12.0",
"glob": "^11.0.3",
"ssh-config": "^5.0.0"
},
"devDependencies": {
"@anthropic-ai/dxt": "^0.2.5",
"@types/node": "^20.11.26",
"@types/ssh2": "^1.15.0",
"@vitest/coverage-v8": "^4.1.4",
"tmp": ">=0.2.4",
"ts-node": "^10.9.2",
"typescript": "^5.4.3",
"vitest": "^4.1.4"
},
"overrides": {
"tmp": ">=0.2.4"
}
}