shippie vs everything
Side-by-side comparison to help you pick between these two MCP servers.
shippie by mattzcarey | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 2,356 | ★ 85,748 |
| 30d uses | — | — |
| Score | 54 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsAI / LLM ToolsGitHub | Developer ToolsAI / LLM ToolsOther |
| Language | TypeScript | TypeScript |
| Last commit | 6 mo ago | this month |
shippie · Summary
Shippie is an MCP client for code review that integrates AI models into CI/CD pipelines.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
shippie · Use cases
- Automated code review in CI/CD pipelines to catch security issues and bugs early
- Local code review of staged changes before committing
- Integration with external tools via MCP for enhanced code analysis capabilities
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
shippie · Install
Installation
- Install Shippie via npm:
npx shippie review- To use with Claude Desktop, configure MCP in your config.json:
{
"mcpServers": {
"shippie": {
"command": "npx",
"args": ["shippie", "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