MCP Catalogs
首页

shippie vs everything

并排对比,帮你在这两个 MCP server 之间做选择。

shippie
by mattzcarey
everything
by modelcontextprotocol
Stars★ 2,356★ 85,748
30天用量
综合分5477
官方
分类
开发者工具AI / LLM 工具GitHub 集成
开发者工具AI / LLM 工具其它
实现语言TypeScriptTypeScript
最近提交6 个月前本月

shippie · 概述

Shippie 是一个将 AI 模型集成到 CI/CD 管道中的代码审查 MCP 客户端。

everything · 概述

官方 MCP 测试服务器,展示协议全部功能,供客户端开发者使用。

shippie · 使用场景

  • 在 CI/CD 管道中自动化代码审查,及早发现安全和错误问题
  • 在提交前对暂存的更改进行本地代码审查
  • 通过 MCP 与外部工具集成,增强代码分析能力

everything · 使用场景

  • 测试 MCP 客户端实现是否支持所有协议功能
  • 通过参考服务器学习 MCP 协议能力
  • 验证客户端对不同传输方式的兼容性

shippie · 安装

安装

  1. 通过 npm 安装 Shippie:
npx shippie review
  1. 要与 Claude Desktop 一起使用,请在您的 config.json 中配置 MCP:
{
  "mcpServers": {
    "shippie": {
      "command": "npx",
      "args": ["shippie", "mcp"]
    }
  }
}

everything · 安装

NPX(推荐)

{
  "mcpServers": {
    "everything": {
      "command": "npx",
      "args": ["-y", "@modelcontextprotocol/server-everything"]
    }
  }
}

Windows 用户请使用 cmd /c

{
  "mcpServers": {
    "everything": {
      "command": "cmd",
      "args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
    }
  }
}

Docker

{
  "mcpServers": {
    "everything": {
      "command": "docker",
      "args": ["run", "-i", "--rm", "mcp/everything"]
    }
  }
}

全局安装

npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everything
对比内容由 README + GitHub 公开数据自动生成,定期更新。