kwin-mcp vs everything
Side-by-side comparison to help you pick between these two MCP servers.
kwin-mcp by isac322 | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 23 | ★ 85,748 |
| 30d uses | — | — |
| Score | 43 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsAI / LLM ToolsProductivity | Developer ToolsAI / LLM ToolsOther |
| Language | Python | TypeScript |
| Last commit | this month | this month |
kwin-mcp · Summary
MCP server for KDE Plasma 6 Wayland GUI automation with 30 tools for isolated virtual sessions and live desktop interaction.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
kwin-mcp · Use cases
- Automated GUI testing for KDE/Qt/GTK applications in headless isolated sessions
- AI-driven desktop automation for operating GUI applications autonomously
- Live desktop collaboration where AI agents can observe and interact with the user's real desktop
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
kwin-mcp · Install
Installation
**Using uv (recommended):**
uv tool install kwin-mcp**Using pip:**
pip install kwin-mcp**Claude Desktop Configuration:** Add to your claude_desktop_config.json:
{
"mcpServers": {
"kwin-mcp": {
"command": "uvx",
"args": ["kwin-mcp"]
}
}
}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