time vs asc-mcp
并排对比,帮你在这两个 MCP server 之间做选择。
time by modelcontextprotocol | asc-mcp by zelentsov-dev | |
|---|---|---|
| Stars | ★ 85,748 | ★ 27 |
| 30天用量 | — | — |
| 综合分 | 77 | 44 |
| 官方 | ✓ | — |
| 分类 | 效率工具开发者工具沟通协作 | 开发者工具AI / LLM 工具效率工具 |
| 实现语言 | TypeScript | Swift |
| 最近提交 | 本月 | 本月 |
time · 概述
功能全面的 MCP 服务器,提供时间和时区转换功能,可自动检测系统时区。
asc-mcp · 概述
MCP 服务器提供 208 个工具,可直接从 Claude 或其他 MCP 客户端管理 App Store Connect 资源。
time · 使用场景
- 协助安排跨时区的国际会议
- 为基于位置的查询提供实时时间信息
- 为旅行计划和行程安排提供时间转换
asc-mcp · 使用场景
- 通过自然语言自动化应用提交和评论回复
- 以编程方式管理 TestFlight 测试组与构建
- 通过 AI 助手处理应用内购买与订阅配置
- 生成 App Store Connect 分析报告与性能指标
time · 安装
安装选项
**使用 uv(推荐):**
uvx mcp-server-time**使用 PIP:**
pip install mcp-server-time
python -m mcp_server_time**为 Claude Desktop 配置:**
{
"mcpServers": {
"time": {
"command": "uvx",
"args": ["mcp-server-time"]
}
}
}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"
}
}
}
}