
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
Easy SSH MCP Server - Execute commands and transfer files via SSH with AI assistance.
~/.ssh/confignpm install -g ezssh-mcp
git clone https://github.com/laomeifun/ezssh-mcp.git
cd ezssh-mcp
npm install
npm run build
ezssh-mcp
# or
npx ezssh-mcp
Add to your claude_desktop_config.json:
{
"mcpServers": {
"ssh": {
"command": "npx",
"args": ["-y", "ezssh-mcp"]
}
}
}
Or if installed globally:
{
"mcpServers": {
"ssh": {
"command": "ezssh-mcp"
}
}
}
| Tool | Description |
|---|---|
ssh_list_hosts | List available SSH hosts from config |
ssh_execute | Execute commands on one or more hosts |
ssh_transfer | Upload/download files via SFTP |
Execute commands on multiple hosts concurrently:
{
"hosts": ["web1", "web2", "web3"],
"command": "uptime"
}
Direct connection (without SSH config):
{
"hosts": ["192.168.1.100"],
"command": "uptime",
"username": "root",
"password": "your-password",
"port": 22
}
Upload files:
{
"direction": "upload",
"hosts": ["web1", "web2"],
"localPath": "./dist/app.zip",
"remotePath": "/opt/app/app.zip"
}
Download files (with {host} placeholder for multiple hosts):
{
"direction": "download",
"hosts": ["web1", "web2"],
"localPath": "./logs/{host}.log",
"remotePath": "/var/log/app.log"
}
SSH hosts are exposed as MCP resources with URI format ssh://<host-name>.
| Variable | Description | Default |
|---|---|---|
SSH_CONFIG_PATH | SSH config file path | ~/.ssh/config |
SSH_KNOWN_HOSTS_PATH | known_hosts file path | ~/.ssh/known_hosts |
SSH_AUTH_SOCK | SSH Agent socket path | System default |
SSH_TIMEOUT | Connection timeout (ms) | 30000 |
SSH_STRICT_HOST_KEY | Strict host key checking | false |
SSH_MAX_CONCURRENCY | Max concurrent connections | 10 |
# Install dependencies
npm install
# Development mode (watch)
npm run dev
# Build
npm run build
# Type check
npm run typecheck
# Run tests
npm test
MIT
FAQs
Easy SSH MCP Server - Execute commands and transfer files via SSH with AI
The npm package ezssh-mcp receives a total of 0 weekly downloads. As such, ezssh-mcp popularity was classified as not popular.
We found that ezssh-mcp demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.