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 | — | — |
| Score | 77 | 40 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | File SystemDeveloper ToolsAI / LLM Tools |
| Language | TypeScript | Python |
| Last commit | this month | 1 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-everythingmcp-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.txtClaude Desktop Integration
- Install the package:
pip install mcp-windows-server - Configure Claude Desktop:
{
"mcpServers": {
"mcp-windows-server": {
"command": "mcp-windows-server",
"env": {
"PYTHONUNBUFFERED": "1"
}
}
}
}- Restart Claude Desktop and start automating!