everything vs itsyconnect-macos
并排对比,帮你在这两个 MCP server 之间做选择。
everything by modelcontextprotocol | itsyconnect-macos by nickustinov | |
|---|---|---|
| Stars | ★ 85,748 | ★ 96 |
| 30天用量 | — | — |
| 综合分 | 77 | 47 |
| 官方 | ✓ | — |
| 分类 | 开发者工具AI / LLM 工具其它 | 开发者工具AI / LLM 工具效率工具 |
| 实现语言 | TypeScript | TypeScript |
| 最近提交 | 本月 | 1 个月前 |
everything · 概述
官方 MCP 测试服务器,展示协议全部功能,供客户端开发者使用。
itsyconnect-macos · 概述
App Store Connect 替代桌面应用,带有可选的 MCP 服务器用于管理 iOS 应用列表。
everything · 使用场景
- 测试 MCP 客户端实现是否支持所有协议功能
- 通过参考服务器学习 MCP 协议能力
- 验证客户端对不同传输方式的兼容性
itsyconnect-macos · 使用场景
- 管理多个区域的 iOS 应用列表,支持批量编辑功能
- 使用 AI 将应用描述、关键词和回复翻译成多种语言
- 通过 MCP 服务器与 AI 编码工具交互来管理 App Store Connect
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-everythingitsyconnect-macos · 安装
按照 README 说明安装 Itsyconnect 桌面应用。要使用 MCP 服务器,请将以下内容添加到 Claude Desktop 配置中:
{
"mcpServers": {
"itsyconnect": {
"command": "npx",
"args": ["@nickustinov/itsyconnect-mcp"],
"env": {}
}
}
}