MCP Catalogs
首页

Glee vs everything

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

Glee
by GleeMCP
everything
by modelcontextprotocol
Stars★ 3★ 85,748
30天用量
综合分3577
官方
分类
开发者工具AI / LLM 工具效率工具
开发者工具AI / LLM 工具其它
实现语言PythonTypeScript
最近提交4 个月前本月

Glee · 概述

Glee 是一个 MCP 工具包,为开发者提供内存、代码审查和上下文工具,以增强 Claude 的功能。

everything · 概述

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

Glee · 使用场景

  • 添加跨越 Claude 会话的持久项目内存
  • 使用可配置的 AI 审查者自动审查代码
  • 使用会话钩子管理项目上下文
  • 执行 Git 取证和变更分析

everything · 使用场景

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

Glee · 安装

# 使用 uv 安装
uv tool install glee --python 3.13

# 或使用 pipx
pipx install glee-code

# 为 Claude Code 初始化
glee init claude

# 重启 Claude Code 完成设置

对于 Claude Desktop,添加到 config.json:

{
  "mcpServers": {
    "glee": {
      "command": "glee",
      "args": ["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 公开数据自动生成,定期更新。