SSH MCP Server
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., "@SSH MCP Serverconnect to 192.168.1.100 as root and run df -h"
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.
SSH MCP Server
高效的 SSH 远程运维 MCP 服务。让 AI 工具通过 MCP 协议管理 SSH 连接、执行命令、传输文件。
功能
Tool | 说明 |
| 建立 SSH 连接(支持跳板机) |
| 断开连接 |
| 执行单条命令 |
| 执行多行脚本 |
| 读取远程文件 |
| 写入远程文件 |
| 列出远程目录 |
| 查看所有连接状态 |
| 查询操作历史日志 |
| 一键诊断远程服务器 |
| 日志查询与增量监控(file/journalctl/docker) |
| 保存服务器配置(支持备注和标签) |
| 删除已保存的服务器 |
| 列出所有已保存的服务器 |
| 更新服务器备注/标签(AI 知识积累) |
核心特性
连接池管理 — 持久化连接,避免重复建连
跳板机支持 — 通过 jump host 连接内网服务器
多认证方式 — 密码 / 私钥
SFTP 文件操作 — 读写文件、浏览目录
空闲超时清理 — 30 分钟无活动自动断开
多行脚本执行 — 通过
bash -s执行复杂脚本持久化操作日志 — 所有操作记录到
~/.ssh-mcp/logs/operations.jsonl,支持 AI 溯源一键服务器诊断 — 系统信息、资源、网络、Docker、GPU 全面检查
Related MCP server: Simple SSH MCP Server
安装
npm install -g @honwee/ssh-mcp-server或者直接通过 npx 使用(无需全局安装):
npx @honwee/ssh-mcp-server配置
Claude Desktop
编辑 ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"ssh": {
"command": "npx",
"args": ["-y", "@honwee/ssh-mcp-server"]
}
}
}Cursor
在 Cursor Settings → MCP 中添加:
{
"mcpServers": {
"ssh": {
"command": "npx",
"args": ["-y", "@honwee/ssh-mcp-server"]
}
}
}Gemini CLI / Antigravity
在 settings.json 中添加:
{
"mcpServers": {
"ssh": {
"command": "npx",
"args": ["-y", "@honwee/ssh-mcp-server"]
}
}
}使用示例
直连服务器
1. ssh_connect(host="192.168.1.100", username="root", password="xxx", alias="web-server")
2. ssh_exec(connectionId="web-server", command="uptime")
3. ssh_exec(connectionId="web-server", command="df -h")
4. sftp_list(connectionId="web-server", remotePath="/var/log")
5. sftp_read(connectionId="web-server", remotePath="/etc/nginx/nginx.conf")
6. ssh_disconnect(connectionId="web-server")通过跳板机连接
ssh_connect(
host="10.0.0.50",
username="deploy",
privateKey="-----BEGIN OPENSSH PRIVATE KEY-----\n...",
alias="internal-db",
jumpHost={
host="bastion.example.com",
username="admin",
password="xxx"
}
)执行多行脚本
ssh_exec_script(
connectionId="web-server",
script="#!/bin/bash\necho '--- Disk Usage ---'\ndf -h\necho '--- Memory ---'\nfree -h\necho '--- Top Processes ---'\nps aux --sort=-%mem | head -10"
)License
MIT
This server cannot be installed
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
- Alicense-qualityDmaintenanceAn MCP server that enables remote SSH command execution and bidirectional file transfers through a standardized interface. It allows AI assistants to securely manage remote servers while keeping credentials isolated and applying command-level security controls.Last updatedISC
- Alicense-qualityDmaintenanceAn MCP server that gives AI assistants full SSH/SFTP remote operations — session management, command execution, interactive shells, file transfers, port forwarding, and system diagnostics.Last updated1MIT
- Alicense-qualityBmaintenanceEnables AI agents to remotely read/write files and execute commands on Linux servers via MCP protocol.Last updated4MIT
- Alicense-qualityAmaintenanceMCP server enabling AI assistants to securely operate remote servers via persistent SSH sessions, with tools for command execution, file transfer, directory listing, and system monitoring.Last updated2MIT
Related MCP Connectors
Let AI operate servers without SSH. Choose actions, approve risky changes, and audit every step.
MCP server for AI agents to plan, verify, and deploy Cloudflare-native apps.
MCP server connecting AI agents to non-custodial staking data across 130+ networks.
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/honwee/ssh-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server