MCP Catalogs
Home

mcp-ssh-manager vs everything

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

mcp-ssh-manager
by bvisible
everything
by modelcontextprotocol
Stars★ 203★ 85,748
30d uses
Score5177
Official
Categories
Ops & InfraDeveloper ToolsMonitoring
Developer ToolsAI / LLM ToolsOther
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.

everything · Summary

Official MCP test server exercising all protocol features for client builders.

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

everything · Use cases

  • Testing MCP client implementations against all protocol features
  • Learning MCP protocol capabilities through a reference server
  • Validating client compatibility with different transport methods

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.

everything · Install

NPX (recommended)

{
  "mcpServers": {
    "everything": {
      "command": "npx",
      "args": ["-y", "@modelcontextprotocol/server-everything"]
    }
  }
}

On Windows, use cmd /c:

{
  "mcpServers": {
    "everything": {
      "command": "cmd",
      "args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
    }
  }
}

Docker

{
  "mcpServers": {
    "everything": {
      "command": "docker",
      "args": ["run", "-i", "--rm", "mcp/everything"]
    }
  }
}

Global install

npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everything
Comparison generated from public README + GitHub signals. Last updated automatically.