everything vs asc-mcp
并排对比,帮你在这两个 MCP server 之间做选择。
everything by modelcontextprotocol | asc-mcp by zelentsov-dev | |
|---|---|---|
| Stars | ★ 85,748 | ★ 27 |
| 30天用量 | — | — |
| 综合分 | 77 | 44 |
| 官方 | ✓ | — |
| 分类 | 开发者工具AI / LLM 工具其它 | 开发者工具AI / LLM 工具效率工具 |
| 实现语言 | TypeScript | Swift |
| 最近提交 | 本月 | 本月 |
everything · 概述
官方 MCP 测试服务器,展示协议全部功能,供客户端开发者使用。
asc-mcp · 概述
MCP 服务器提供 208 个工具,可直接从 Claude 或其他 MCP 客户端管理 App Store Connect 资源。
everything · 使用场景
- 测试 MCP 客户端实现是否支持所有协议功能
- 通过参考服务器学习 MCP 协议能力
- 验证客户端对不同传输方式的兼容性
asc-mcp · 使用场景
- 通过自然语言自动化应用提交和评论回复
- 以编程方式管理 TestFlight 测试组与构建
- 通过 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-everythingasc-mcp · 安装
安装
方法 A:使用 Mint(推荐)
# 安装 Mint
brew install mint
# 安装 asc-mcp
mint install zelentsov-dev/asc-mcp@v2.4.0
# 添加到 Claude Code
claude mcp add asc-mcp -- ~/.mint/bin/asc-mcp方法 B:从源码构建
git clone https://github.com/zelentsov-dev/asc-mcp.git
cd asc-mcp
swift build -c release
# 注册到 Claude
claude mcp add asc-mcp -- $(pwd)/.build/release/asc-mcpClaude Desktop 配置
在 ~/Library/Application Support/Claude/claude_desktop_config.json 中添加:
{
"mcpServers": {
"asc-mcp": {
"command": "/path/to/asc-mcp",
"env": {
"ASC_KEY_ID": "XXXXXXXXXX",
"ASC_ISSUER_ID": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx",
"ASC_PRIVATE_KEY_PATH": "/path/to/AuthKey.p8"
}
}
}
}