Planned integration for Apache web server control in future enhancements
Support for .env files to store sensitive configuration information
Supports git for repository management including cloning the MCP server
Repository hosting for the MCP server code
Planned integration for SSL certificate management with Let's Encrypt
Compatible with Linux operating systems for running the MCP server
Compatible with macOS operating systems for running the MCP server
Provides tools to check NGINX server status and planned integration for Nginx web server control
Supports Node.js 18 or higher as a requirement for running the MCP server
Support for Ubuntu website management tools including system package updates and server administration
Planned integration for WordPress management on remote servers
SSH MCP
A Model Context Protocol (MCP) server that provides SSH access to remote servers, allowing AI tools like Claude Desktop or VS Code to securely connect to your VPS for website management.
Features
- SSH connection management with password or key-based authentication
- Remote command execution with timeout handling
- File upload and download via SFTP
- Directory listing
- Secure connection handling
- Compatible with Claude Desktop, VS Code, and other MCP-compatible clients
Prerequisites
- Node.js 18 or higher
- npm or yarn
- Compatible with Windows, macOS, and Linux
Installation
- Clone the repository:
- Install dependencies:
- Build the project:
- Install globally (optional):
Configuration
Claude Desktop Configuration
- Open Claude Desktop
- Go to Settings > Developer (or press Ctrl+Shift+D)
- Edit the MCP configuration
- Add the following configuration:
Important: Replace /path/to/mcp-ssh-server/build/index.js
with the absolute path to your built index.js file.
VS Code Configuration (if using MCP extension)
Create or edit .vscode/mcp.json
in your workspace:
Available Tools
ssh_connect
Establish an SSH connection to a remote server.
Parameters:
host
(required) - Hostname or IP addressusername
(required) - SSH usernamepassword
(optional) - SSH passwordprivateKeyPath
(optional) - Path to private key filepassphrase
(optional) - Passphrase for private keyport
(optional) - SSH port (default: 22)connectionId
(optional) - Unique identifier for this connection
Returns:
success
- Boolean indicating successconnectionId
- ID to use for subsequent commandsmessage
- Connection status message
Example:
ssh_exec
Execute a command on the remote server.
Parameters:
connectionId
(required) - ID from ssh_connectcommand
(required) - Command to executecwd
(optional) - Working directorytimeout
(optional) - Command timeout in milliseconds (default: 60000)
Returns:
code
- Exit codesignal
- Signal that terminated the process (if any)stdout
- Standard outputstderr
- Standard error
Example:
ssh_upload_file
Upload a file to the remote server.
Parameters:
connectionId
(required) - ID from ssh_connectlocalPath
(required) - Local file pathremotePath
(required) - Remote destination path
Returns:
success
- Boolean indicating successmessage
- Upload status message
ssh_download_file
Download a file from the remote server.
Parameters:
connectionId
(required) - ID from ssh_connectremotePath
(required) - Remote file pathlocalPath
(required) - Local destination path
Returns:
success
- Boolean indicating successmessage
- Download status message
ssh_list_files
List files in a directory on the remote server.
Parameters:
connectionId
(required) - ID from ssh_connectremotePath
(required) - Directory path to list
Returns:
files
- Array of file objects with properties:filename
- File nameisDirectory
- Boolean indicating if it's a directorysize
- File sizelastModified
- Last modification time
ssh_disconnect
Close an SSH connection.
Parameters:
connectionId
(required) - ID from ssh_connect
Returns:
success
- Boolean indicating successmessage
- Disconnection status message
Usage Examples with Claude
- Connect to your server:
- Check server status:
- Upload a website file:
- List website files:
- Download a backup:
- Disconnect when done:
Planned Ubuntu Website Management Tools
The foundation is in place to add Ubuntu website management tools in src/ubuntu-website-tools.ts
. Future enhancements will include:
- Web server control (Apache/Nginx)
- System package updates
- Website deployment with backup
- SSL certificate management (Let's Encrypt)
- Server performance monitoring
- Website backup functionality
- WordPress management
- Firewall (UFW) management
Security Notes
- Store SSH private keys securely
- Use key-based authentication when possible
- Limit SSH access to specific IP addresses
- Keep your server updated
- Use strong passwords or passphrases
- Consider setting up environment variables in a
.env
file for sensitive information
Troubleshooting
Server won't start
- Check that Node.js is installed:
node --version
- Verify all dependencies are installed:
npm install
- Rebuild the project:
npm run build
Connection issues
- Verify SSH server is running on the target
- Check firewall settings
- Confirm credentials are correct
- Test SSH connection manually first
Claude Desktop integration
- Ensure the path in configuration is absolute
- Restart Claude Desktop after configuration changes
- Check Developer Console for error messages
Development
To modify or extend the server:
- Edit source files in
src/
- Rebuild:
npm run build
- Test your changes
- Restart Claude Desktop or VS Code to pick up changes
Running in Development Mode
For quick testing during development:
Contributing
Contributions for additional tools and features are welcome. Please feel free to submit pull requests or open issues for enhancements and bug fixes.
License
MIT License
This server cannot be installed
SSH MCP
Related MCP Servers
- Python
- Python
- PythonMIT License
- PythonMIT License