squeez vs everything
Side-by-side comparison to help you pick between these two MCP servers.
squeez by claudioemmanuel | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 121 | ★ 85,748 |
| 30d uses | — | — |
| Score | 49 | 77 |
| Official | — | ✓ |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Developer ToolsAI / LLM ToolsOther |
| Language | Rust | TypeScript |
| Last commit | this month | this month |
squeez · Summary
squeez is an MCP server that provides token compression and optimization for AI CLI hosts via hooks.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
squeez · Use cases
- Reducing token consumption in AI coding assistants through bash output compression
- Maintaining context window efficiency for long-running development sessions
- Optimizing AI CLI performance by deduplicating redundant tool calls and outputs
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
squeez · Install
Installation
Three methods — all produce the same result:
curl (recommended)
curl -fsSL https://raw.githubusercontent.com/claudioemmanuel/squeez/main/install.sh | shnpm / npx
npm install -g squeez
npx squeezcargo
cargo install squeezMCP Server Setup
No special MCP setup is required as squeez includes its own MCP server. Run with:
squeez mcpClaude Desktop Integration
Add to Claude Desktop config:
{
"mcpServers": {
"squeez": {
"command": "squeez",
"args": ["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