winremote-mcp vs everything
Side-by-side comparison to help you pick between these two MCP servers.
winremote-mcp by dddabtc | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 118 | ★ 85,748 |
| 30d uses | — | — |
| Score | 50 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsMonitoringOps & Infra | Developer ToolsAI / LLM ToolsOther |
| Language | Python | TypeScript |
| Last commit | this month | this month |
winremote-mcp · Summary
Windows Remote MCP Server with 40+ tools for desktop automation, process management, and file operations via FastMCP.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
winremote-mcp · Use cases
- Enable AI agents like Claude and GPT to control Windows GUI applications remotely
- Automate Windows system administration tasks from cross-platform environments
- Provide accessible Windows desktop control for users with disabilities
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
winremote-mcp · Install
Installation
From PyPI (Recommended)
pip install winremote-mcpFrom Source
git clone https://github.com/dddabtc/winremote-mcp.git
cd winremote-mcp
pip install .Claude Desktop Integration
Add to claude_desktop_config.json:
{
"mcpServers": {
"winremote": {
"type": "http",
"url": "http://192.168.1.100:8090/mcp/",
"oauth": {
"clientId": "my-client",
"clientSecret": "my-secret"
}
}
}
}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