time vs mcp-server-unitycatalog
Side-by-side comparison to help you pick between these two MCP servers.
time by modelcontextprotocol | mcp-server-unitycatalog by ognis1205 | |
|---|---|---|
| Stars | ★ 85,748 | ★ 16 |
| 30d uses | — | — |
| Score | 77 | 33 |
| Official | ✓ | — |
| Categories | ProductivityDeveloper ToolsCommunication | DatabaseDeveloper ToolsAI / LLM Tools |
| Language | TypeScript | Python |
| Last commit | this month | 14 mo ago |
time · Summary
A comprehensive MCP server providing time and timezone conversion tools with automatic system timezone detection.
mcp-server-unitycatalog · Summary
Unity Catalog MCP server that provides database functions as tools for 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
mcp-server-unitycatalog · Use cases
- AI assistants executing cataloged ML functions
- Automating data preprocessing workflows through AI
- Dynamic function discovery and execution in AI 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"]
}
}
}mcp-server-unitycatalog · Install
Installation
Using uv:
uvx run mcp-server-unitycatalog --uc_server <your_url> --uc_catalog <catalog_name> --uc_schema <schema_name>Using Docker:
docker run --rm -i mcp/unitycatalog --uc_server <your_url> --uc_catalog <catalog_name> --uc_schema <schema_name>Configuration with Claude Desktop
Add to your claude_desktop_config.json:
{
"mcpServers": {
"unitycatalog": {
"command": "uv",
"args": [
"--directory",
"/<path to your local repository>/mcp-server-unitycatalog",
"run",
"mcp-server-unitycatalog",
"--uc_server",
"<your unity catalog url>",
"--uc_catalog",
"<your catalog name>",
"--uc_schema",
"<your schema name>"
]
}
}
}