MCP Catalogs
Home

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
Score5477
Official
Categories
Developer ToolsAI / LLM ToolsGitHub
Developer ToolsAI / LLM ToolsOther
LanguageTypeScriptTypeScript
Last commit6 mo agothis 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

  1. Install Shippie via npm:
npx shippie review
  1. 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
Comparison generated from public README + GitHub signals. Last updated automatically.