MCP Catalogs
Home

everything vs mcp-windows-automation

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

everything
by modelcontextprotocol
mcp-windows-automation
by mukul975
Stars★ 85,748★ 22
30d uses
Score7740
Official
Categories
Developer ToolsAI / LLM ToolsOther
File SystemDeveloper ToolsAI / LLM Tools
LanguageTypeScriptPython
Last committhis month1 mo ago

everything · Summary

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

mcp-windows-automation · Summary

AI-powered Windows automation server using MCP with 80+ tools for system control, file operations, and more.

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-windows-automation · Use cases

  • Automate Windows system administration through natural language commands
  • Control applications and perform file operations using AI assistants like Claude
  • Integrate Windows automation into AI-powered workflows for productivity enhancement

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

mcp-windows-automation · Install

Installation

# Install from PyPI
pip install mcp-windows-server

# Or install from source
git clone https://github.com/mukul975/mcp-windows-automation.git
cd mcp-windows-server
pip install -r requirements.txt

Claude Desktop Integration

  1. Install the package: pip install mcp-windows-server
  2. Configure Claude Desktop:
{
  "mcpServers": {
    "mcp-windows-server": {
      "command": "mcp-windows-server",
      "env": {
        "PYTHONUNBUFFERED": "1"
      }
    }
  }
}
  1. Restart Claude Desktop and start automating!
Comparison generated from public README + GitHub signals. Last updated automatically.