time vs turbular
Side-by-side comparison to help you pick between these two MCP servers.
time by modelcontextprotocol | turbular by raeudigerRaeffi | |
|---|---|---|
| Stars | ★ 85,748 | ★ 99 |
| 30d uses | — | — |
| Score | 77 | 44 |
| Official | ✓ | — |
| Categories | ProductivityDeveloper ToolsCommunication | DatabaseDeveloper ToolsAI / LLM Tools |
| Language | TypeScript | Python |
| Last commit | this month | 10 mo ago |
time · Summary
A comprehensive MCP server providing time and timezone conversion tools with automatic system timezone detection.
turbular · Summary
Turbular is an MCP server that enables LLM agents to connect to and query multiple databases through a unified API interface.
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
turbular · Use cases
- Build AI applications that need to query multiple database types
- Enable LLM agents to access and analyze enterprise data securely
- Create data analysis tools that work across different database 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"]
}
}
}turbular · Install
Installation
- Clone the repository:
git clone https://github.com/raeudigerRaeffi/turbular.git
cd turbular- Using Docker (Recommended):
docker-compose -f docker-compose.dev.yml up --build- Manual Installation:
pip install -r requirements.txt
uvicorn app.main:app --reloadClaude Desktop Configuration
{
"mcpServers": {
"turbular": {
"command": "uvicorn",
"args": ["app.main:app", "--reload"],
"env": {
"PYTHONPATH": "."
}
}
}
}