time vs MCP-Bridge
Side-by-side comparison to help you pick between these two MCP servers.
time by modelcontextprotocol | MCP-Bridge by SecretiveShell | |
|---|---|---|
| Stars | ★ 85,748 | ★ 925 |
| 30d uses | — | — |
| Score | 77 | 51 |
| Official | ✓ | — |
| Categories | ProductivityDeveloper ToolsCommunication | AI / LLM ToolsDeveloper ToolsProductivity |
| Language | TypeScript | Python |
| Last commit | this month | 5 mo ago |
time · Summary
A comprehensive MCP server providing time and timezone conversion tools with automatic system timezone detection.
MCP-Bridge · Summary
MCP-Bridge acts as middleware to provide OpenAI-compatible endpoints that call MCP tools.
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-Bridge · Use cases
- Integrating MCP tools with OpenAI-based applications like Open WebUI
- Providing an OpenAI-compatible interface for legacy systems that need MCP functionality
- Simplifying the integration of multiple MCP tools into AI applications without MCP native support
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-Bridge · Install
Docker Installation
- Clone the repository
- Edit the compose.yml file to reference your config.json file
- Run with
docker-compose up --build -d
Manual Installation
- Clone the repository
- Install dependencies:
uv sync - Create a config.json file in the root directory
- Run the application:
uv run mcp_bridge/main.py
Claude Desktop Configuration
Add to Claude Desktop's config.json:
{
"mcpServers": {
"mcp-bridge": {
"command": "uvx",
"args": ["mcp-bridge"]
}
}
}