MCP Catalogs
首页

everything vs mcp-ical

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

everything
by modelcontextprotocol
mcp-ical
by Omar-V2
Stars★ 85,748★ 311
30天用量
综合分7744
官方
分类
开发者工具AI / LLM 工具其它
效率工具沟通协作AI / LLM 工具
实现语言TypeScriptPython
最近提交本月13 个月前

everything · 概述

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

mcp-ical · 概述

MCP 服务器,支持通过自然语言管理 macOS 日历,创建和安排事件。

everything · 使用场景

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

mcp-ical · 使用场景

  • 通过自然语言命令快速安排会议
  • 预订前检查时间段的可用性
  • 无需导航日历界面即可管理重复事件

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

mcp-ical · 安装

安装

  1. **克隆和设置**
# 克隆仓库
git clone https://github.com/Omar-V2/mcp-ical.git
cd mcp-ical

# 安装依赖
uv sync
  1. **为 Claude Desktop 配置**

创建或编辑 ~/Library/Application\ Support/Claude/claude_desktop_config.json:

{
    "mcpServers": {
        "mcp-ical": {
            "command": "uv",
            "args": [
                "--directory",
                "/ABSOLUTE/PATH/TO/PARENT/FOLDER/mcp-ical",
                "run",
                "mcp-ical"
            ]
        }
    }
}
  1. **启动 Claude 以访问日历**

在终端中运行以下命令:

/Applications/Claude.app/Contents/MacOS/Claude
对比内容由 README + GitHub 公开数据自动生成,定期更新。