filesystem vs asc-mcp
并排对比,帮你在这两个 MCP server 之间做选择。
filesystem by modelcontextprotocol | asc-mcp by zelentsov-dev | |
|---|---|---|
| Stars | ★ 85,748 | ★ 27 |
| 30天用量 | — | — |
| 综合分 | 77 | 44 |
| 官方 | ✓ | — |
| 分类 | 本地文件系统开发者工具效率工具 | 开发者工具AI / LLM 工具效率工具 |
| 实现语言 | TypeScript | Swift |
| 最近提交 | 本月 | 本月 |
filesystem · 概述
功能丰富的文件系统操作 MCP 服务器,具有动态目录访问控制功能。
asc-mcp · 概述
MCP 服务器提供 208 个工具,可直接从 Claude 或其他 MCP 客户端管理 App Store Connect 资源。
filesystem · 使用场景
- 使 AI 模型能够读取和写入项目文件进行开发
- 允许 Claude 或其他 MCP 客户端浏览和分析代码库
- 为内容生成提供对特定目录的安全沙盒访问
asc-mcp · 使用场景
- 通过自然语言自动化应用提交和评论回复
- 以编程方式管理 TestFlight 测试组与构建
- 通过 AI 助手处理应用内购买与订阅配置
- 生成 App Store Connect 分析报告与性能指标
filesystem · 安装
安装
使用 NPX
{
"mcpServers": {
"filesystem": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-filesystem",
"/path/to/allowed/directory"
]
}
}
}使用 Docker
{
"mcpServers": {
"filesystem": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"--mount", "type=bind,src=/path/to/allowed/dir,dst=/projects/allowed/dir",
"mcp/filesystem",
"/projects"
]
}
}
}VS Code 扩展
点击 README 中的安装按钮直接在 VS Code 中安装。
asc-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"
}
}
}
}