time vs mcp-proxy
Side-by-side comparison to help you pick between these two MCP servers.
time by modelcontextprotocol | mcp-proxy by tbxark | |
|---|---|---|
| Stars | ★ 85,748 | ★ 691 |
| 30d uses | — | — |
| Score | 77 | 52 |
| Official | ✓ | — |
| Categories | ProductivityDeveloper ToolsCommunication | Developer ToolsOps & InfraAI / LLM Tools |
| Language | TypeScript | Go |
| Last commit | this month | 3 mo ago |
time · Summary
A comprehensive MCP server providing time and timezone conversion tools with automatic system timezone detection.
mcp-proxy · Summary
MCP proxy server that aggregates multiple MCP servers behind a single HTTP entrypoint with flexible configuration options.
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-proxy · Use cases
- Consolidating multiple MCP servers behind a single entrypoint for easier client connection
- Aggregating tools and resources from various providers into a unified MCP interface
- Creating a gateway for MCP servers with different communication protocols
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"]
}
}
}mcp-proxy · Install
Installation Options
Build from Source
git clone https://github.com/tbxark/mcp-proxy.git
cd mcp-proxy
make build
./build/mcp-proxy --config path/to/config.jsonInstall via Go
go install github.com/tbxark/mcp-proxy@latestDocker
docker run -d -p 9090:9090 -v /path/to/config.json:/config/config.json ghcr.io/tbxark/mcp-proxy:latestClaude Desktop Configuration
Add to Claude Desktop config.json:
{
"mcpServers": {
"mcp-proxy": {
"command": "mcp-proxy",
"args": ["--config", "/path/to/config.json"]
}
}
}