time vs hass-mcp
Side-by-side comparison to help you pick between these two MCP servers.
time by modelcontextprotocol | hass-mcp by voska | |
|---|---|---|
| Stars | ★ 85,748 | ★ 296 |
| 30d uses | — | — |
| Score | 77 | 48 |
| Official | ✓ | — |
| Categories | ProductivityDeveloper ToolsCommunication | home-automationAI / LLM ToolsDeveloper 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.
hass-mcp · Summary
Hass-MCP enables AI assistants to interact with Home Assistant through device control, entity queries, and automation management.
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
hass-mcp · Use cases
- Control smart home devices through natural language commands
- Troubleshoot automations and identify issues with entities
- Generate Home Assistant automations based on conversation context
- Summarize and analyze smart home usage patterns
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"]
}
}
}hass-mcp · Install
Docker Installation (Recommended)
- Pull the Docker image:
docker pull voska/hass-mcp:latest- Add to Claude Desktop config:
{
"mcpServers": {
"hass-mcp": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"-e",
"HA_URL",
"-e",
"HA_TOKEN",
"voska/hass-mcp"
],
"env": {
"HA_URL": "http://homeassistant.local:8123",
"HA_TOKEN": "YOUR_LONG_LIVED_TOKEN"
}
}
}
}- Replace token and URL, then restart Claude Desktop.