mcp-ssh-server-tool 1.0.2 → 1.0.3

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/bin/cli.js ADDED
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env node
2
+
3
+ import('./index.js');
package/index.js CHANGED
File without changes
package/mcp.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "mcpServers": {
3
3
  "ssh-mcp-server": {
4
4
  "command": "npx",
5
- "args": ["--yes", "mcp-ssh-server-tool@latest"],
5
+ "args": ["--yes", "mcp-ssh-server-tool"],
6
6
  "env": {},
7
7
  "description": "SSH MCP Server - Connect to remote servers via SSH and execute commands"
8
8
  }
package/package.json CHANGED
@@ -1,11 +1,11 @@
1
1
  {
2
2
  "name": "mcp-ssh-server-tool",
3
- "version": "1.0.2",
3
+ "version": "1.0.3",
4
4
  "description": "MCP Server for SSH connections and remote command execution",
5
5
  "main": "index.js",
6
6
  "type": "module",
7
7
  "bin": {
8
- "mcp-ssh-server-tool": "index.js"
8
+ "mcp-ssh-server-tool": "./bin/cli.js"
9
9
  },
10
10
  "scripts": {
11
11
  "start": "node index.js",