time vs magg
Side-by-side comparison to help you pick between these two MCP servers.
time by modelcontextprotocol | magg by sitbon | |
|---|---|---|
| Stars | ★ 85,748 | ★ 133 |
| 30d uses | — | — |
| Score | 77 | 46 |
| Official | ✓ | — |
| Categories | ProductivityDeveloper ToolsCommunication | AI / LLM ToolsDeveloper ToolsProductivity |
| Language | TypeScript | Python |
| Last commit | this month | 9 mo ago |
time · Summary
A comprehensive MCP server providing time and timezone conversion tools with automatic system timezone detection.
magg · Summary
MCP Aggregator server that manages multiple MCP servers, enabling dynamic tool discovery and configuration.
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
magg · Use cases
- Extending LLM capabilities by dynamically adding MCP servers based on specific task requirements
- Creating modular AI systems where tools can be loaded/unloaded as needed
- Building centralized tool management for multi-agent systems
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"]
}
}
}magg · Install
Installation
The recommended way to install Magg is using uv:
# Install as a tool
uv tool install magg
# Run with stdio transport
magg serve
# Run with HTTP transport
magg serve --httpFor Claude Desktop configuration, add to claude_desktop_config.json:
{
"mcpServers": {
"magg": {
"command": "uv",
"args": ["tool", "run", "magg", "serve"]
}
}
}