jordanburke/ssh-client-mcp-server
If you are the rightful owner of ssh-client-mcp-server and would like to certify it and/or have it hosted online, please leave a comment on the right or send an email to henry@mcphub.com.
SSH Client MCP Server is a local Model Context Protocol (MCP) server that facilitates secure SSH command execution on Linux and Windows systems.
exec
Execute a shell command on the remote server
SSH Client MCP Server
SSH Client MCP Server is a local Model Context Protocol (MCP) server that exposes SSH control for Linux and Windows systems, enabling LLMs and other MCP clients to execute shell commands securely via SSH.
Contents
Quick Start
- Install SSH Client MCP Server
- Configure SSH Client MCP Server
- Set up your MCP Client (e.g. Claude Desktop, Cursor, etc)
- Execute remote shell commands on your Linux or Windows server via natural language
Features
- MCP-compliant server exposing SSH capabilities
- Execute shell commands on remote Linux and Windows systems
- Secure authentication via password or SSH key
- Built with TypeScript and the official MCP SDK
Tools
exec
: Execute a shell command on the remote server
Installation
- Clone the repository:
git clone https://github.com/jordanburke/ssh-client-mcp-server.git cd ssh-client-mcp-server
- Install dependencies:
pnpm install
Client Setup
You can configure Claude Desktop to use this MCP Server.
host
: Hostname or IP of the Linux or Windows serverport
: SSH port (default: 22)user
: SSH usernamepassword
: SSH password (or usekey
for key-based auth) (optional)key
: Path to private SSH key (optional)
{
"mcpServers": {
"ssh-client-mcp-server": {
"command": "npx",
"args": [
"ssh-client-mcp-server",
"-y",
"--",
"--host=1.2.3.4",
"--port=22",
"--user=root",
"--password=pass",
"--key=path/to/key"
]
}
}
}
Testing
You can use the MCP Inspector for visual debugging of this MCP Server.
pnpm run inspect
Disclaimer
SSH Client MCP Server is provided under the . Use at your own risk. This project is not affiliated with or endorsed by any SSH or MCP provider.
Support
If you find SSH Client MCP Server helpful, consider starring the repository or contributing! Pull requests and feedback are welcome.