time vs toolhive-registry-server
Side-by-side comparison to help you pick between these two MCP servers.
time by modelcontextprotocol | toolhive-registry-server by stacklok | |
|---|---|---|
| Stars | ★ 85,748 | ★ 16 |
| 30d uses | — | — |
| Score | 77 | 42 |
| Official | ✓ | — |
| Categories | ProductivityDeveloper ToolsCommunication | Ops & InfraDeveloper ToolsSecurity |
| Language | TypeScript | Go |
| Last commit | this month | this month |
time · Summary
A comprehensive MCP server providing time and timezone conversion tools with automatic system timezone detection.
toolhive-registry-server · Summary
A registry server that discovers, governs and controls access to MCP servers and skills across organizations.
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
toolhive-registry-server · Use cases
- Centralized governance of MCP servers across large organizations with multiple teams
- Aggregating MCP servers from both public registries and internal sources with unified access control
- Providing different views of the same MCP servers to different teams based on their roles and needs
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"]
}
}
}toolhive-registry-server · Install
Installation
Prerequisites
- Go 1.26 or later (for building from source)
- Task (for build automation)
- PostgreSQL 16+
Build from source
task buildRun
# Run with Git source
thv-registry-api serve --config examples/config-git.yaml
# Run with local file
thv-registry-api serve --config examples/config-file.yamlDocker
task docker-upClaude Desktop Integration
Add to Claude Desktop config:
{
"mcpServers": {
"toolhive": {
"command": "thv-registry-api",
"args": ["serve", "--config", "path/to/config.yaml"]
}
}
}