mcp-server vs time
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server by Aayush9029 | time by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 42 | ★ 85,748 |
| 30d uses | — | — |
| Score | 45 | 77 |
| Official | — | ✓ |
| Categories | ProductivityDeveloper ToolsCommunication | ProductivityDeveloper ToolsCommunication |
| Language | Python | TypeScript |
| Last commit | 2 mo ago | this month |
mcp-server · Summary
A task management MCP server that connects AI assistants to iPhone task tracking with notifications.
time · Summary
A comprehensive MCP server providing time and timezone conversion tools with automatic system timezone detection.
mcp-server · Use cases
- AI assistants create tasks during coding sessions that sync to iPhone
- Automatically update task status as AI completes work
- Receive iPhone notifications when AI assistants finish tasks
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
mcp-server · Install
Quick Start
1. Get Your API Key
Download the iOS app from the App Store
2. Configure Claude Desktop
Add this to ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"task-manager": {
"command": "npx",
"args": [
"mcp-remote",
"https://task-mcp-server.aayushpokharel9029.workers.dev/sse?apiKey=YOUR_API_KEY"
]
}
}
}3. Configure Other MCP Clients
For Cursor or other MCP clients:
{
"mcpServers": {
"task-manager": {
"url": "https://task-mcp-server.aayushpokharel9029.workers.dev/sse?apiKey=YOUR_API_KEY"
}
}
}Replace YOUR_API_KEY with your actual API key.
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"]
}
}
}