everything vs fossil-mcp
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | fossil-mcp by yfedoseev | |
|---|---|---|
| Stars | ★ 85,748 | ★ 56 |
| 30d uses | — | — |
| Score | 77 | 45 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | Developer ToolsAI / LLM Tools |
| Language | TypeScript | Rust |
| Last commit | this month | 1 mo ago |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
fossil-mcp · Summary
Fossil MCP is a code quality toolkit that detects dead code, clones, and scaffolding in vibe-coded projects across 16 languages.
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
fossil-mcp · Use cases
- Maintaining codebases written largely by AI agents where dead code accumulates
- Detecting duplicated code that traditional similarity-based tools miss
- Identifying scaffolding artifacts left by AI in production code
- Providing AI agents with call graphs to understand code dependencies
- Integrating code quality checks into CI/CD pipelines for AI-generated code
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-everythingfossil-mcp · Install
Quick Install
**macOS/Linux:**
curl -fsSL fossil-mcp.com/install.sh | sh**Windows (PowerShell):**
irm fossil-mcp.com/install.ps1 | iexMCP Server Setup for Claude Desktop
Add to claude_desktop_config.json:
{
"mcpServers": {
"fossil": {
"command": "fossil-mcp"
}
}
}