EveryDev.ai
Subscribe
Home
Tools

3,569+ AI tools

  • New
  • Trending
  • Featured
  • Compare
  • Arena
Categories
  • Agents2189
  • Coding1574
  • Infrastructure698
  • Marketing534
  • Projects498
  • Research456
  • Design416
  • Analytics389
  • Testing296
  • MCP290
  • Security286
  • Data262
  • Integration197
  • Prompts189
  • Communication183
  • Extensions173
  • Learning170
  • Voice151
  • Commerce135
  • DevOps123
  • Web86
  • Finance26
AI Tools by Topic
  • AI Coding Assistants
  • Agent Frameworks
  • MCP Servers
  • AI Prompt Tools
  • Vibe Coding Tools
  • AI Design Tools
  • AI Database Tools
  • AI Website Builders
  • AI Testing Tools
  • LLM Evaluations
Follow Us
  • X / Twitter
  • LinkedIn
  • Reddit
  • Discord
  • Threads
  • Bluesky
  • Mastodon
  • YouTube
  • GitHub
  • Instagram
Get Started
  • About
  • Editorial Standards
  • Corrections & Disclosures
  • Community Guidelines
  • Advertise
  • Contact Us
  • Newsletter
  • Submit a Tool
  • Start a Discussion
  • Write A Blog
  • Share A Build
  • Terms of Service
  • Privacy Policy
Explore with AI
  • ChatGPT
  • Gemini
  • Claude
  • Grok
  • Perplexity
Agent Experience
  • llms.txt
Theme
With AI, Everyone is a Dev. EveryDev.ai © 2026
    1. Home
    2. Tools
    3. MCP SSH Manager
    MCP SSH Manager icon

    MCP SSH Manager

    MCP Servers

    An MCP server with 37 tools that enables Claude Code and OpenAI Codex to manage multiple SSH connections for remote command execution, file transfers, database operations, backups, and DevOps automation.

    Visit Website

    At a Glance

    Pricing
    Open Source

    Fully free and open source under the MIT License. Install via npm globally or use with npx.

    Engagement

    Available On

    Windows
    macOS
    Linux
    Web
    API

    Resources

    WebsiteDocsGitHubllms.txt

    Topics

    MCP ServersDevOps InfrastructureDeployment Automation

    Alternatives

    InsForgeRadar by SkyhookObot
    Developer
    bvisiblebvisible is the GitHub user and maintainer behind MCP SSH Ma…

    Listed Aug 2026

    About MCP SSH Manager

    MCP SSH Manager is an open-source Model Context Protocol (MCP) server published by GitHub user bvisible that lets AI coding assistants like Claude Code and OpenAI Codex control remote servers over SSH. It is available on npm as mcp-ssh-manager under the MIT license and is installed globally or via npx. The project has accumulated 434 stars and 52 forks on GitHub since its creation in August 2025.

    What It Is

    MCP SSH Manager bridges AI assistants and remote infrastructure by exposing 37 MCP tools that cover the full DevOps lifecycle: executing shell commands, uploading and downloading files, syncing directories with rsync, managing persistent SSH sessions, running database operations, creating and restoring backups, monitoring server health, managing SSH tunnels, and executing commands across server groups. It supports .env and TOML configuration formats, making it compatible with both Claude Code and OpenAI Codex workflows simultaneously.

    Tool Architecture and Groups

    The 37 tools are organized into six groups that can be enabled or disabled independently to reduce AI context consumption:

    • Core (5 tools) — always-on: list servers, execute, upload, download, sync
    • Sessions (4 tools) — persistent SSH sessions that maintain shell context across calls
    • Monitoring (6 tools) — health checks (CPU, RAM, disk, network), service status, process management, configurable alert thresholds
    • Backup (4 tools) — automated backups for MySQL, PostgreSQL, MongoDB, and file systems with cron scheduling and retention policies
    • Database (4 tools) — dump, import, schema exploration, and SELECT-only query execution with SQL injection prevention
    • Advanced (14 tools) — deployment, sudo execution, SSH tunnels, server groups, aliases, hooks, and profiles

    The README states that enabling only the Core group reduces context usage by approximately 92% (from ~43.5k tokens to ~3.5k tokens), which matters for AI assistants with limited context windows.

    Security Model

    The server implements a layered security approach. Starting with v3.5.0, each server can be assigned one of three per-server security modes: unrestricted (default, zero overhead), readonly (blocks mutating tools and a built-in denylist of destructive shell commands), or restricted (every command must match at least one ALLOW_PATTERNS regex and no DENY_PATTERNS regex, with DENY winning). An opt-in JSONL audit log records tool invocations, arguments, policy decisions, and exit codes, with sensitive fields automatically redacted. Command aliases are expanded before policy evaluation to prevent bypass.

    Connectivity and Platform Support

    The server handles complex network topologies through ProxyJump (bastion/jump host chaining with circular-reference detection), ProxyCommand (SOCKS5 and custom proxy commands), and per-server SSH agent forwarding. Authentication supports passwords, SSH keys, passphrase-protected keys via ssh-agent or inline configuration, and OpenSSH 9.x algorithm negotiation (curve25519-sha256, aes128/256-gcm, hmac-sha2-256/512-etm). Windows OpenSSH hosts are supported via a per-server platform=windows flag that bypasses Linux-specific command wrappers. The tool runs on Linux, macOS, and Windows and requires Node.js v18 or higher.

    Update: v3.8.0 (August 14, 2026)

    The current release is v3.8.0, published August 14, 2026. Key changes include a new optional group field per server in .env/TOML that eliminates the need for a separate .server-groups.json file, a Windows ssh_sync path-conversion fix for MSYS2 rsync, a crash fix for ssh_tunnel_create on already-bound ports (previously took down the entire MCP server process), a security floor raise for @modelcontextprotocol/sdk to ^1.30.0 to clear three published advisories, and the addition of JSDoc type-checking in CI. The project has published 24 versions since launch, with active community contributions across security disclosures, Windows compatibility, and cross-platform fixes.

    MCP SSH Manager - 1

    Community Discussions

    Be the first to start a conversation about MCP SSH Manager

    Share your experience with MCP SSH Manager, ask questions, or help others learn from your insights.

    Pricing

    OPEN SOURCE

    Open Source

    Fully free and open source under the MIT License. Install via npm globally or use with npx.

    • 37 MCP tools for SSH remote server management
    • Claude Code and OpenAI Codex compatible
    • Backup, monitoring, database, and deployment tools
    • Per-server security modes and audit logging
    • MIT License — free to use, modify, and distribute

    Capabilities

    Key Features

    • 37 MCP tools for SSH remote server management
    • Execute shell commands on remote servers with working directory support
    • Upload and download files between local and remote systems
    • Bidirectional file sync via rsync integration
    • Persistent SSH sessions maintaining shell context across commands
    • Automated backups for MySQL, PostgreSQL, MongoDB, and file systems
    • Cron-based backup scheduling with retention policies
    • Real-time server health checks (CPU, RAM, disk, network, uptime)
    • Service status monitoring for nginx, mysql, docker, and custom services
    • Process management with CPU/RAM sorting and kill capabilities
    • Configurable health alert thresholds with JSONL audit log
    • Database dump, import, schema exploration, and SELECT-only queries
    • SQL injection prevention via shell-quoting and heredoc delivery
    • SSH tunnel management (local/remote port forwarding, SOCKS proxy)
    • Server groups for parallel command execution
    • ProxyJump / bastion host support with chained multi-hop and circular-reference detection
    • ProxyCommand support for SOCKS5 and custom proxy commands
    • Per-server SSH agent forwarding (opt-in)
    • Per-server security modes: unrestricted, readonly, restricted
    • ALLOW_PATTERNS / DENY_PATTERNS regex policy for restricted mode
    • JSONL audit log with sensitive field redaction
    • Live configuration hot reload without server restart
    • Tool activation system with 6 groups for 92% context reduction
    • Auto-approval configuration export for Claude Code
    • Support for .env and TOML configuration formats
    • Windows OpenSSH host support via platform=windows flag
    • OpenSSH 9.x algorithm compatibility (curve25519-sha256, aes-gcm, hmac-sha2-etm)
    • SSH key, password, passphrase, and ssh-agent authentication
    • Interactive CLI wizard (ssh-manager) for server and tool management
    • Configuration profiles for frappe, docker, nodejs, and default project types

    Integrations

    Claude Code
    OpenAI Codex
    MySQL
    PostgreSQL
    MongoDB
    rsync
    ssh-agent
    SOCKS5 proxy
    ncat
    Docker
    nginx
    systemd
    cron
    Node.js
    npm
    npx
    API Available
    View Docs

    Ratings & Reviews

    No ratings yet

    Be the first to rate MCP SSH Manager and help others make informed decisions.

    Developer

    bvisible

    bvisible is the GitHub user and maintainer behind MCP SSH Manager, an open-source MCP server that connects AI coding assistants to remote infrastructure over SSH. The project ships 37 DevOps tools covering command execution, file transfers, database management, backups, and health monitoring. Active development includes community contributions, security disclosures, and cross-platform compatibility work across Linux, macOS, and Windows.

    Read more about bvisible
    WebsiteGitHub
    1 tool in directory

    Similar Tools

    InsForge icon

    InsForge

    InsForge is an open-source backend platform built for AI coding agents, exposing databases, auth, storage, and functions through a semantic layer agents can understand and operate.

    Radar by Skyhook icon

    Radar by Skyhook

    An open-source Kubernetes UI that provides topology, events, Helm, GitOps, image inspection, audits, and MCP for AI agents — all in a single binary or self-hosted in your cluster.

    Obot icon

    Obot

    Open-source MCP gateway and control plane for enterprise IT that centralizes MCP servers, access policies, auditing, and integrations for AI agents.

    Browse all tools

    Related Topics

    MCP Servers

    Model Context Protocol servers that extend AI capabilities.

    185 tools

    DevOps Infrastructure

    Platforms and tools for CI/CD pipelines and DevOps practices.

    75 tools

    Deployment Automation

    AI-enhanced tools that streamline and automate application deployment processes with intelligent rollout strategies and failure prediction.

    41 tools
    Browse all topics
    Back to all toolsSuggest an edit
    ratings
    discussions