mcp-server-home-assistant vs time
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-home-assistant by allenporter | time by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 67 | ★ 85,748 |
| 30d uses | — | — |
| Score | 37 | 77 |
| Official | — | ✓ |
| Categories | home-automationDeveloper ToolsAI / LLM Tools | ProductivityDeveloper ToolsCommunication |
| Language | Python | TypeScript |
| Last commit | 15 mo ago | this month |
mcp-server-home-assistant · Summary
MCP server for Home Assistant that enables AI models to interact with home automation systems.
time · Summary
A comprehensive MCP server providing time and timezone conversion tools with automatic system timezone detection.
mcp-server-home-assistant · Use cases
- Control smart home devices through conversational AI
- Query home environment data (temperature, occupancy, etc.)
- Create home automation triggered by AI models
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-home-assistant · Install
Installation
- Install the [home-assistant-model-context-protocol](https://github.com/allenporter/home-assistant-model-context-protocol) custom component in your Home Assistant instance
- Create a [Long Lived Access Token](https://www.home-assistant.io/docs/authentication/#your-account-profile)
- Clone this repository to your local machine
- Edit your
claude_desktop_config.json:
{
"mcpServers": {
"Home-assistant": {
"command": "uv",
"args": [
"--directory",
"<path_to_repo>",
"run",
"mcp-server-home-assistant",
"-v",
"-v"
],
"env": {
"HOME_ASSISTANT_WEB_SOCKET_URL": "http://localhost:8123/api/websocket",
"HOME_ASSISTANT_API_TOKEN": "your_api_token_here"
}
}
}
}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"]
}
}
}