desktop vs everything
Side-by-side comparison to help you pick between these two MCP servers.
desktop by agentify-sh | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 391 | ★ 85,748 |
| 30d uses | — | — |
| Score | 50 | 77 |
| Official | — | ✓ |
| Categories | Browser AutomationAI / LLM ToolsDeveloper Tools | Developer ToolsAI / LLM ToolsOther |
| Language | JavaScript | TypeScript |
| Last commit | this month | this month |
desktop · Summary
MCP server for controlling web AI sessions (ChatGPT, Claude, etc.) via parallel tabs and automation.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
desktop · Use cases
- Automate interactions with ChatGPT, Claude, or other AI services using MCP-compatible tools
- Maintain stable AI sessions across multiple queries while keeping browser state intact
- Generate and save artifacts/images from AI services for reuse in subsequent prompts
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
desktop · Install
Installation
Start with npx (recommended):
npx @agentify/desktopGlobal install:
npm install -g @agentify/desktop
agentify-desktopRun as MCP server:
npx @agentify/desktop mcpFor Claude Desktop, add to config:
{
"mcpServers": {
"agentify-desktop": {
"command": "npx",
"args": ["-y", "@agentify/desktop", "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