MCP Catalogs
Home

win-cli-mcp-server vs everything

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

win-cli-mcp-server
by mhprol
everything
by modelcontextprotocol
Stars★ 0★ 85,748
30d uses
Score3677
Official
Categories
Developer ToolsSecurityOps & Infra
Developer ToolsAI / LLM ToolsOther
LanguageTypeScriptTypeScript
Last commit2 mo agothis month

win-cli-mcp-server · Summary

A hardened MCP server for Windows CLI and SSH interactions with critical bug fixes and security improvements.

everything · Summary

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

win-cli-mcp-server · Use cases

  • Automating Windows system administration tasks through Claude Desktop
  • Executing commands on remote Linux/Unix servers via SSH
  • Securely running development environments and build processes

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

win-cli-mcp-server · Install

Installation

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "win-cli": {
      "command": "node",
      "args": [
        "C:/path/to/win-cli-mcp-server/dist/index.js",
        "--config",
        "C:/path/to/win-cli-mcp-server/config.json"
      ]
    }
  }
}

Or clone and set up:

git clone https://github.com/mhprol/win-cli-mcp-server.git
cd win-cli-mcp-server
npm install
npm run build

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.