MCP Catalogs
首页

cupertino vs everything

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

cupertino
by mihaelamj
everything
by modelcontextprotocol
Stars★ 742★ 85,748
30天用量
综合分5577
官方
分类
开发者工具AI / LLM 工具知识库 / RAG
开发者工具AI / LLM 工具其它
实现语言SwiftTypeScript
最近提交本月本月

cupertino · 概述

一个基于 Swift 的 MCP 服务器,为 AI 代理索引和提供苹果开发者文档。

everything · 概述

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

cupertino · 使用场景

  • 让 AI 助手能够获取准确的 Apple API 文档,避免幻觉
  • 为 iOS/macOS/Swift 开发者提供离线开发环境
  • 将 Apple 文档搜索直接集成到 AI 驱动的编码工具中

everything · 使用场景

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

cupertino · 安装

安装

**一键安装(推荐):**

bash <(curl -sSL https://raw.githubusercontent.com/mihaelamj/cupertino/main/install.sh)

**使用 Homebrew:**

brew tap mihaelamj/tap
brew install cupertino
cupertino setup
cupertino serve

**Claude Desktop 配置:** 编辑 ~/Library/Application Support/Claude/claude_desktop_config.json

{
  "mcpServers": {
    "cupertino": {
      "command": "/usr/local/bin/cupertino",
      "args": ["serve"]
    }
  }
}

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 公开数据自动生成,定期更新。