MCP Catalogs
Home

mcp-ssh-manager vs filesystem

Side-by-side comparison to help you pick between these two MCP servers.

mcp-ssh-manager
by bvisible
filesystem
by modelcontextprotocol
Stars★ 203★ 85,748
30d uses
Score5177
Official
Categories
Ops & InfraDeveloper ToolsMonitoring
File SystemDeveloper ToolsProductivity
LanguageJavaScriptTypeScript
Last committhis monththis month

mcp-ssh-manager · Summary

A comprehensive MCP server providing 37 tools for remote SSH management, DevOps automation, backups, database operations, and health monitoring.

filesystem · Summary

A feature-rich MCP server for filesystem operations with dynamic directory access control.

mcp-ssh-manager · Use cases

  • Automated DevOps tasks across multiple servers including deployment, backups, and system maintenance
  • Database management with safe SQL operations and backup/restore capabilities for MySQL, PostgreSQL, and MongoDB
  • Real-time health monitoring and alerting for servers with customizable thresholds
  • Multi-server group operations with a single command using server groups

filesystem · Use cases

  • Enable AI models to read and write project files during development
  • Allow Claude or other MCP clients to browse and analyze codebases
  • Provide secure sandboxed access to specific directories for content generation

mcp-ssh-manager · Install

Installation

Install via npm:

npm install -g mcp-ssh-manager

For Claude Desktop, add to your config.json:

{
  "mcpServers": {
    "ssh-manager": {
      "command": "npx",
      "args": ["mcp-ssh-manager"]
    }
  }
}

For OpenAI Codex, use the TOML configuration:

[mcpServers.ssh-manager]
command = "npx"
args = ["mcp-ssh-manager"]

After installation, run:

ssh-manager server add

to configure your first server.

filesystem · Install

Installation

Using NPX

{
  "mcpServers": {
    "filesystem": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-filesystem",
        "/path/to/allowed/directory"
      ]
    }
  }
}

Using Docker

{
  "mcpServers": {
    "filesystem": {
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "--mount", "type=bind,src=/path/to/allowed/dir,dst=/projects/allowed/dir",
        "mcp/filesystem",
        "/projects"
      ]
    }
  }
}

VS Code Extension

Click the installation buttons in the README to install directly in VS Code.

Comparison generated from public README + GitHub signals. Last updated automatically.