time vs coolify-mcp
Side-by-side comparison to help you pick between these two MCP servers.
time by modelcontextprotocol | coolify-mcp by StuMason | |
|---|---|---|
| Stars | ★ 85,748 | ★ 372 |
| 30d uses | — | — |
| Score | 77 | 53 |
| Official | ✓ | — |
| Categories | ProductivityDeveloper ToolsCommunication | Ops & InfraDeveloper ToolsMonitoring |
| 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.
coolify-mcp · Summary
Comprehensive MCP server with 38 token-optimized tools for managing Coolify self-hosted PaaS through AI assistants.
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
coolify-mcp · Use cases
- Debug Coolify applications and infrastructure through natural language prompts
- Perform batch operations like restarting multiple applications or updating environment variables
- Search Coolify documentation and get contextual help for specific configurations
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"]
}
}
}coolify-mcp · Install
Installation
Prerequisites
- Node.js >= 18
- A running Coolify instance (tested with v4.0.0-beta.460)
- Coolify API access token (generate in Coolify Settings > API)
Claude Desktop
Add to your Claude Desktop config (~/Library/Application Support/Claude/claude_desktop_config.json on macOS):
{
"mcpServers": {
"coolify": {
"command": "npx",
"args": ["-y", "@masonator/coolify-mcp"],
"env": {
"COOLIFY_ACCESS_TOKEN": "your-api-token",
"COOLIFY_BASE_URL": "https://your-coolify-instance.com"
}
}
}
}Claude Code
claude mcp add coolify \
-e COOLIFY_BASE_URL="https://your-coolify-instance.com" \
-e COOLIFY_ACCESS_TOKEN="your-api-token" \
-- npx @masonator/coolify-mcp@latest