clawdcursor vs everything
Side-by-side comparison to help you pick between these two MCP servers.
clawdcursor by AmrDab | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 315 | ★ 85,748 |
| 30d uses | — | — |
| Score | 53 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsProductivityAI / LLM Tools | Developer ToolsAI / LLM ToolsOther |
| Language | TypeScript | TypeScript |
| Last commit | this month | this month |
clawdcursor · Summary
An OS-agnostic, model-agnostic desktop automation server that gives AI agents eyes, hands, and verification through MCP.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
clawdcursor · Use cases
- Automating tasks in legacy applications without APIs
- Controlling desktop apps through AI agents in editors like Claude Code or Cursor
- Automating workflows across applications with local-only operation
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
clawdcursor · Install
Quick Install
**Windows (PowerShell):**
irm https://clawdcursor.com/install.ps1 | iex**macOS / Linux:**
curl -fsSL https://clawdcursor.com/install.sh | bashThen configure:
clawdcursor --version
clawdcursor consent --accept
clawdcursor status**Claude Desktop Configuration:** Add to ~/.claude/settings.json:
{
"mcpServers": {
"clawdcursor": {
"command": "clawdcursor",
"args": ["mcp", "--compact"]
}
}
}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