Glee vs everything
Side-by-side comparison to help you pick between these two MCP servers.
Glee by GleeMCP | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 3 | ★ 85,748 |
| 30d uses | — | — |
| Score | 35 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsAI / LLM ToolsProductivity | Developer ToolsAI / LLM ToolsOther |
| Language | Python | TypeScript |
| Last commit | 4 mo ago | this month |
Glee · Summary
Glee is an MCP toolkit providing memory, code review, and context tools for developers to enhance Claude's capabilities.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
Glee · Use cases
- Adding persistent project memory that survives across Claude sessions
- Automatically reviewing code with configurable AI reviewers
- Managing project context with session hooks
- Performing Git forensics and change analysis
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
Glee · Install
# Install using uv
uv tool install glee --python 3.13
# Or using pipx
pipx install glee-code
# Initialize for Claude Code
glee init claude
# Restart Claude Code to complete setupFor Claude Desktop, add to your config.json:
{
"mcpServers": {
"glee": {
"command": "glee",
"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