MCP Catalogs
首页

everything vs keeper.sh

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

everything
by modelcontextprotocol
keeper.sh
by ridafkih
Stars★ 85,748★ 1,067
30天用量
综合分7753
官方
分类
开发者工具AI / LLM 工具其它
效率工具开发者工具AI / LLM 工具
实现语言TypeScriptTypeScript
最近提交本月1 个月前

everything · 概述

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

keeper.sh · 概述

Keeper.sh 是一个日历同步工具,带有 MCP 服务器,使 AI 代理能够访问和控制多个日历。

everything · 使用场景

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

keeper.sh · 使用场景

  • AI 助手通过单一界面访问和管理多个日历来源
  • 在个人和工作日历之间自动同步日历
  • 构建能够检查所有日历可用性的 AI 驱动的调度代理

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

keeper.sh · 安装

Keeper.sh 可以通过多种方式安装:

**自托管安装:**

  1. 克隆仓库:git clone https://github.com/ridafkih/keeper.sh
  2. 安装依赖:bun install
  3. 按照README中的说明设置环境变量
  4. 使用 Docker Compose 运行:bun dev

**云托管:** 访问 [keeper.sh](https://keeper.sh) 注册云托管版本。

**Claude Desktop 的 MCP 服务器配置:** 添加到您的 claude_desktop_config.json

{
  "mcpServers": {
    "keeper": {
      "command": "npx",
      "args": ["@keeper/mcp-server"]
    }
  }
}
对比内容由 README + GitHub 公开数据自动生成,定期更新。