everything vs mcp-ssh
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | mcp-ssh by shuakami | |
|---|---|---|
| Stars | ★ 85,748 | ★ 62 |
| 30d uses | — | — |
| Score | 77 | 45 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | Developer ToolsOps & InfraSecurity |
| Language | TypeScript | TypeScript |
| Last commit | this month | 4 mo ago |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
mcp-ssh · Summary
An MCP server that provides AI-powered SSH management capabilities through standardized protocols.
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 · Use cases
- Automated server administration through AI assistants
- Remote development environment management
- File transfer and system monitoring automation
- Persistent tmux session management for collaborative work
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-everythingmcp-ssh · Install
Installation
- Clone and install:
git clone https://github.com/shuakami/mcp-ssh.git
cd mcp-ssh
npm install
npm run build- Configure in your MCP client (e.g., Cursor):
{
"mcpServers": {
"ssh-mcp": {
"command": "python3",
"args": ["/path/to/mcp-ssh/bridging_ssh_mcp.py"]
}
}
}- Restart your client to activate the MCP server.