SSH MCP Server
An MCP server that lets an AI assistant run commands and transfer files over SSH without exposing connection details.
README
SSH MCP Server
An MCP server that lets an AI assistant (Claude Code, Claude Desktop, etc.) run commands and transfer files over SSH — without ever seeing your real connection details. The assistant only works with aliases like prod or server1; hostnames, usernames, keys, and passwords stay on your machine.
Built on the official @modelcontextprotocol/sdk and ssh2, with an optional passthrough mode that shells out to your system ssh/scp and reads ~/.ssh/config.
Why
- Credentials never reach the model. Real host/user/IP live in your local config (or
~/.ssh/config) and are scrubbed from all output before the assistant sees it. - Alias-only surface. The assistant calls
ssh_exec("prod", "..."); it has no idea whatprodresolves to. - Real
scp/rsync/ProxyJumpsupport via passthrough mode when you want it.
Tools
| Tool | Description |
|---|---|
ssh_exec |
Run a command on a server. Returns stdout/stderr/exit code. |
ssh_upload |
Upload a file, a glob (logs/*.gz), or a whole directory (recursive=true). preserve=true keeps mode+timestamps (scp -p). |
ssh_download |
Download a file, a glob, or a whole directory (recursive=true). Same preserve option. |
ssh_list |
List a remote directory. |
ssh_list_servers |
List configured aliases and their descriptions. Never exposes hosts. |
Install
git clone <this-repo> sshmcp
cd sshmcp
npm install
Requires Node 18+. Passthrough mode additionally needs the OpenSSH client (ssh/scp) on your PATH — built into Windows 10/11, macOS, and Linux.
Configure your servers
Create ~/.claude/ssh-servers.json (or anywhere, and point SSH_CONFIG_PATH at it). Each entry is an alias. Pick one auth method per server.
A. SSH key (recommended)
{
"server1": {
"description": "Main deploy box",
"host": "10.0.0.5",
"port": 22,
"username": "deploy",
"privateKeyPath": "~/.ssh/id_ed25519"
}
}
B. Password from an environment variable
{
"box": {
"host": "10.0.0.6",
"username": "admin",
"passwordEnv": "BOX_PASS"
}
}
Then export BOX_PASS before the server starts.
C. Direct password (local/testing only)
{
"box": { "host": "10.0.0.6", "username": "admin", "password": "secret" }
}
D. SSH-config passthrough (most secure, full scp/rsync)
{
"prod": { "description": "Main prod", "sshConfigHost": "prod" }
}
When an entry has sshConfigHost, the tools shell out to the system ssh/scp using that Host alias from ~/.ssh/config. HostName, User, IdentityFile, ProxyJump, etc. all come from there and never appear in this file — no credentials live in ssh-servers.json at all. Real hostnames/users/IPs are scrubbed from output.
"sshConfigHost": truereuses the JSON alias as the Host name."sshConfigHost": "prod"maps to a differently-named Host in~/.ssh/config.- Requires key/agent auth (ssh config holds no passwords).
Methods can be mixed freely across servers in one file. See ssh-servers.example.json.
Register with Claude Code
claude mcp add ssh --scope user -- node /absolute/path/to/sshmcp/ssh-server.js
MCP servers are not configured in
settings.json— useclaude mcp add(writes~/.claude.json) or a project.mcp.json.
Set a custom config path with the SSH_CONFIG_PATH env var if you don't use ~/.claude/ssh-servers.json.
After adding (or editing the server), fully restart Claude Code — MCP tools load at session startup, so a running session won't pick up changes.
Usage examples
# run a command
ssh_exec(serverAlias="prod", command="systemctl status nginx")
# upload a build, preserving permissions and timestamps
ssh_upload(serverAlias="prod", localPath="./dist", remotePath="/var/www/app", recursive=true, preserve=true)
# pull all logs matching a glob
ssh_download(serverAlias="prod", remotePath="/var/log/*.log", localPath="./logs")
Security model
- The config file holds credentials and is
.gitignored.chmod 600 ~/.claude/ssh-servers.json. - Connection errors are sanitized — host/IP/username are replaced with the alias before returning.
- Passthrough mode resolves the real host/user via
ssh -Gserver-side only to scrub them from output; that data never enters the assistant's context. - Prefer keys or
passwordEnvover inline passwords.
Notes & limitations
- Windows +
preserve: timestamps are preserved reliably in both directions; Unix permission bits are limited by what Windows (NTFS) can represent — Windows has no execute bit, so a755source becomes666when Windows is one end. Linux↔Linux (server-to-server style) is unaffected. - Glob matches a single directory level; use
recursive=truefor whole trees. - Symlinks are skipped during recursive directory walks to avoid cycles.
- Passwords are not supported in passthrough mode (ssh config holds none); give those hosts a key to use mode D.
License
MIT
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.