@yawlabs/ssh-mcp 0.15.0 → 0.15.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -0
- package/package.json +19 -8
package/README.md
CHANGED
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
[](https://www.npmjs.com/package/@yawlabs/ssh-mcp)
|
|
4
4
|
[](https://opensource.org/licenses/MIT)
|
|
5
|
+
[](https://x.com/TokenLimitNews)
|
|
5
6
|
|
|
6
7
|
**Make SSH work for AI tools.** MCP server that manages your SSH environment, diagnoses what's broken, fixes it, and gives your agent remote access to anything.
|
|
7
8
|
|
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yawlabs/ssh-mcp",
|
|
3
|
-
"version": "0.15.
|
|
3
|
+
"version": "0.15.1",
|
|
4
4
|
"mcpName": "io.github.YawLabs/ssh-mcp",
|
|
5
|
-
"description": "MCP server
|
|
5
|
+
"description": "SSH MCP server: run remote commands, transfer files over SFTP, manage ssh-agent keys and known_hosts, and auto-diagnose SSH failures.",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"bin": {
|
|
8
8
|
"ssh-mcp": "bin/ssh-mcp.mjs"
|
|
@@ -22,8 +22,8 @@
|
|
|
22
22
|
"scripts": {
|
|
23
23
|
"build": "tsup && tsc -p tsconfig.build.json --emitDeclarationOnly",
|
|
24
24
|
"dev": "tsup --watch",
|
|
25
|
-
"lint": "
|
|
26
|
-
"lint:fix": "
|
|
25
|
+
"lint": "node scripts/lint.mjs check src/",
|
|
26
|
+
"lint:fix": "node scripts/lint.mjs check --write src/",
|
|
27
27
|
"typecheck": "tsc --noEmit",
|
|
28
28
|
"test": "vitest run",
|
|
29
29
|
"test:integration": "docker compose -f test/docker/docker-compose.yml up -d --build --wait && SSH_MCP_INTEGRATION=1 vitest run src/tests/integration.test.ts; docker compose -f test/docker/docker-compose.yml down",
|
|
@@ -31,12 +31,22 @@
|
|
|
31
31
|
"prepublishOnly": "npm run build"
|
|
32
32
|
},
|
|
33
33
|
"keywords": [
|
|
34
|
-
"mcp",
|
|
35
34
|
"ssh",
|
|
36
|
-
"
|
|
35
|
+
"mcp",
|
|
37
36
|
"model-context-protocol",
|
|
37
|
+
"mcp-server",
|
|
38
|
+
"sftp",
|
|
39
|
+
"ssh-agent",
|
|
40
|
+
"ssh-keys",
|
|
41
|
+
"known-hosts",
|
|
42
|
+
"ssh-config",
|
|
43
|
+
"proxyjump",
|
|
44
|
+
"remote",
|
|
45
|
+
"remote-execution",
|
|
46
|
+
"diagnostics",
|
|
47
|
+
"devops",
|
|
38
48
|
"ai",
|
|
39
|
-
"
|
|
49
|
+
"ai-agents"
|
|
40
50
|
],
|
|
41
51
|
"author": "Yaw Labs <contact@yaw.sh>",
|
|
42
52
|
"license": "MIT",
|
|
@@ -65,5 +75,6 @@
|
|
|
65
75
|
},
|
|
66
76
|
"overrides": {
|
|
67
77
|
"esbuild": "^0.28.1"
|
|
68
|
-
}
|
|
78
|
+
},
|
|
79
|
+
"homepage": "https://yaw.sh/mcp-servers/ssh-mcp/"
|
|
69
80
|
}
|