time vs asc-mcp
Side-by-side comparison to help you pick between these two MCP servers.
time by modelcontextprotocol | asc-mcp by zelentsov-dev | |
|---|---|---|
| Stars | ★ 85,748 | ★ 27 |
| 30d uses | — | — |
| Score | 77 | 44 |
| Official | ✓ | — |
| Categories | ProductivityDeveloper ToolsCommunication | Developer ToolsAI / LLM ToolsProductivity |
| Language | TypeScript | Swift |
| Last commit | this month | this month |
time · Summary
A comprehensive MCP server providing time and timezone conversion tools with automatic system timezone detection.
asc-mcp · Summary
MCP server providing 208 tools for managing App Store Connect resources directly from Claude or other MCP clients.
time · Use cases
- Assisting with international meeting scheduling across time zones
- Providing real-time time information for location-based queries
- Enabling time conversion for travel planning and itineraries
asc-mcp · Use cases
- Automate app submissions and review responses through natural language
- Manage TestFlight beta groups and builds programmatically
- Handle in-app purchases and subscription configurations via AI assistants
- Generate App Store Connect analytics reports and performance metrics
time · Install
Installation Options
**Using uv (recommended):**
uvx mcp-server-time**Using PIP:**
pip install mcp-server-time
python -m mcp_server_time**Configure for Claude Desktop:**
{
"mcpServers": {
"time": {
"command": "uvx",
"args": ["mcp-server-time"]
}
}
}asc-mcp · Install
Installation
Option A: Using Mint (recommended)
# Install Mint
brew install mint
# Install asc-mcp
mint install zelentsov-dev/asc-mcp@v2.4.0
# Add to Claude Code
claude mcp add asc-mcp -- ~/.mint/bin/asc-mcpOption B: Building from Source
git clone https://github.com/zelentsov-dev/asc-mcp.git
cd asc-mcp
swift build -c release
# Register with Claude
claude mcp add asc-mcp -- $(pwd)/.build/release/asc-mcpClaude Desktop Configuration
Add to ~/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"
}
}
}
}