remote-ssh-mcp
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@remote-ssh-mcpcheck disk space usage on the remote server"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
remote-ssh-mcp
Generic MCP server for connecting an MCP client to a remote Linux or Unix host over SSH.
It provides remote shell commands, directory listing, text and binary file access, SSH
port forwarding, and VS Code Remote-SSH URI generation. The server runs locally and
reuses the OpenSSH installation, configuration, keys, agents, and ProxyJump settings
already available on the user's machine.
Network Model
This MCP server is useful when the remote server cannot access the internet, or when you do not want the remote server to use its own outbound network connection.
The MCP client and remote-ssh-mcp process run on your local computer. Requests are
sent from the local computer to the remote server through SSH, so the remote server
does not need internet access for MCP communication. The only network requirement is
that your local computer can reach the server's SSH address and port.
This does not give remote commands internet access. Commands such as curl, wget,
git clone, npm install, or pip install still run on the remote server and require
network access from that server. To fetch files or data through the local computer,
download them locally first and then use remote_ssh_write_file_base64, or use an SSH
port forward where appropriate.
Related MCP server: TermSSH MCP
Quick Setup
Clone the repository, install dependencies, and run the interactive setup wizard:
git clone https://github.com/bbt567/remote-ssh-mcp.git
cd remote-ssh-mcp
npm ci
npm run setupThe wizard:
Lists saved server profiles or creates a new profile.
Asks for the server IP/hostname, SSH user, port, and private-key path.
Detects an existing SSH key or generates an Ed25519 key.
Tests public-key authentication.
Offers to install the public key on the server. OpenSSH may request the server password once; the wizard never reads or stores it.
Saves the profile in
~/.remote-ssh-mcp/profiles.json.Installs a profile-specific MCP entry into Codex Desktop/CLI and/or Claude Code.
Generates a profile-specific JSON config as a portable backup.
Restart the selected clients after setup. Codex Desktop and Codex CLI share the same
~/.codex/config.toml, so installing into either Codex surface enables both.
Chinese instructions are available in docs/SETUP.zh-CN.md.
Multiple Servers
Run npm run setup again to add another server. Saved profiles are displayed before
the connection questions, so an existing server can be selected without re-entering
its address, user, port, or key path.
The default profile is installed as remote-ssh. Other profiles use distinct MCP
server names:
default -> remote-ssh
production -> remote-ssh-production
staging -> remote-ssh-stagingList saved profiles:
npm run profilesRemove a local profile:
npm run profiles -- remove stagingRemoving a profile does not remove its Codex or Claude Code MCP entry.
Requirements
Node.js 20 or newer
OpenSSH client available as
sshSSH public-key authentication configured for the target host
A local MCP client that supports stdio servers
Verify SSH before configuring the MCP client:
ssh 192.0.2.10 "hostname && whoami && pwd"If your SSH setup needs a username or a non-default port, use the environment variables
shown below or configure them in ~/.ssh/config.
Install From Source
git clone https://github.com/bbt567/remote-ssh-mcp.git
cd remote-ssh-mcp
npm ci
npm run setupThe repository does not store SSH passwords, private keys, or tokens.
MCP Client Configuration
The setup wizard installs clients using a profile name and profiles file:
{
"mcpServers": {
"remote-ssh": {
"command": "node",
"args": [
"C:\\path\\to\\remote-ssh-mcp\\dist\\index.js"
],
"env": {
"REMOTE_SSH_PROFILE": "production",
"REMOTE_SSH_PROFILES_FILE": "C:\\Users\\your-name\\.remote-ssh-mcp\\profiles.json"
}
}
}
}Direct SSH_HOST, SSH_USER, SSH_PORT, and SSH_IDENTITY_FILE configuration remains
supported for compatibility. Explicit environment variables override profile values.
REMOTE_SSH_* variables are supported as the explicit namespaced equivalents. When
both forms are present, REMOTE_SSH_* takes precedence.
Tools
remote_ssh_check: Check the SSH connection and return remote identity details.remote_ssh_local_diagnostics: Inspect the local OpenSSH environment and connection.remote_ssh_exec: Run a shell command with optional working directory and environment.remote_ssh_list_dir: List a remote directory withls -la.remote_ssh_read_text: Read a remote text file with a byte limit.remote_ssh_read_file_base64: Read a small remote binary file as base64.remote_ssh_write_text: Write UTF-8 text to a remote file.remote_ssh_write_file_base64: Decode base64 and write a remote file.remote_ssh_start_port_forward: Start a local SSH-Lport forward.remote_ssh_list_port_forwards: List port forwards created by this process.remote_ssh_stop_port_forward: Stop a port forward created by this process.remote_ssh_uri: Generate a VS Code Remote-SSH URI and CLI command.
Every remote tool accepts an optional host field that overrides the configured target
for that call. The command and file-write tools are intentionally powerful; review
tool calls before approving them in your MCP client.
Environment Variables
Variable | Default | Description |
| none | Saved profile to load |
|
| Local profiles file |
| none | Default hostname, alias, or IP address |
| OpenSSH default | Username added to |
| OpenSSH default | SSH TCP port |
| platform OpenSSH | SSH executable path |
| OpenSSH default | Private-key path passed to OpenSSH |
| none | Namespaced equivalent of |
| OpenSSH default | Namespaced equivalent of |
| OpenSSH default | Namespaced equivalent of |
| platform OpenSSH | Namespaced equivalent of |
| OpenSSH default | Namespaced equivalent of |
|
| Default command timeout |
|
| Default captured bytes per output stream |
Development
npm run typecheck
npm run build
npm run dev
npm run setup
npm run profilesThe MCP server uses stdio. Logs are written to stderr so the MCP protocol stream remains clean.
License
MIT. See LICENSE.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseAqualityCmaintenanceAn SSH MCP server that enables users to connect to and manage remote servers directly from Claude Code. It provides tools to execute commands, monitor connection status, and dynamically manage server configurations through natural language.Last updated10406MIT
- Alicense-qualityCmaintenanceTerminal-first SSH access for MCP clients and AI agents, enabling interactive remote sessions, file uploads, and stateful workflows.Last updated271MIT
- AlicenseBqualityDmaintenanceA Model Context Protocol (MCP) SSH client server that provides autonomous SSH operations for GitHub Copilot and VS Code. Enable natural language SSH automation without manual prompts or GUI interactions.Last updated20MIT
- AlicenseAqualityCmaintenanceEnables reading, writing, editing, searching, running commands, transferring files, and using git on a remote Linux server over SSH via MCP tools.Last updated221AGPL 3.0
Related MCP Connectors
Connect any MCP client to MetaTrader 4/5 to read prices, manage positions, and place trades.
A MCP server built for developers enabling Git based project management with project and personal…
Remote MCP server for RunComfy Serverless API (ComfyUI): deployments and async inference.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/bbt567/remote-ssh-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server