time vs mcphub
Side-by-side comparison to help you pick between these two MCP servers.
time by modelcontextprotocol | mcphub by samanhappy | |
|---|---|---|
| Stars | ★ 85,748 | ★ 2,082 |
| 30d uses | — | — |
| Score | 77 | 57 |
| Official | ✓ | — |
| Categories | ProductivityDeveloper ToolsCommunication | Developer ToolsOps & InfraAI / LLM Tools |
| Language | TypeScript | TypeScript |
| Last commit | this month | this month |
time · Summary
A comprehensive MCP server providing time and timezone conversion tools with automatic system timezone detection.
mcphub · Summary
MCPHub is a unified management platform for orchestrating multiple MCP servers with flexible routing and centralized dashboard.
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
mcphub · Use cases
- Organizing and managing multiple MCP servers in a distributed team environment
- Creating custom routing strategies for different AI client connections
- Implementing secure access controls for MCP resources in production
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"]
}
}
}mcphub · Install
Docker Installation (Recommended)
# Run with custom config (recommended)
docker run -p 3000:3000 -v ./mcp_settings.json:/app/mcp_settings.json -v ./data:/app/data samanhappy/mcphub
# Or run with default settings
docker run -p 3000:3000 samanhappy/mcphubClaude Desktop Configuration
Add to Claude Desktop's config.json:
{
"mcpServers": {
"mcphub": {
"command": "http",
"args": ["http://localhost:3000/mcp"]
}
}
}Local Development
git clone https://github.com/samanhappy/mcphub.git
cd mcphub
pnpm install
pnpm dev