BugPack vs everything
Side-by-side comparison to help you pick between these two MCP servers.
BugPack by duhuazhu | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 22 | ★ 85,748 |
| 30d uses | — | — |
| Score | 43 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsProductivityAI / LLM Tools | Developer ToolsAI / LLM ToolsOther |
| Language | TypeScript | TypeScript |
| Last commit | 2 mo ago | this month |
BugPack · Summary
BugPack packages bug screenshots into AI-ready fix instructions with an MCP server.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
BugPack · Use cases
- QA teams reporting bugs to developers with screenshots and annotations
- Developers fixing bugs directly through AI coding agents with full bug context
- Project management platforms syncing bug status with BugPack
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
BugPack · Install
Installation
npx bugpack-mcpClaude Desktop Configuration
Add to ~/.claude.json:
{
"mcpServers": {
"bugpack": {
"type": "stdio",
"command": "npx",
"args": ["bugpack-mcp", "--mcp"]
}
}
}VS Code Configuration
Create .vscode/mcp.json:
{
"servers": {
"bugpack": {
"command": "npx",
"args": ["bugpack-mcp", "--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