hass-mcp-server vs memory
Side-by-side comparison to help you pick between these two MCP servers.
hass-mcp-server by ganhammar | memory by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 34 | ★ 85,748 |
| 30d uses | — | — |
| Score | 44 | 77 |
| Official | — | ✓ |
| Categories | AI / LLM Toolshome-automationiot | Knowledge GraphAI / LLM ToolsProductivity |
| Language | Python | TypeScript |
| Last commit | 1 mo ago | this month |
hass-mcp-server · Summary
Home Assistant MCP server with HTTP transport for remote access via OAuth or long-lived tokens.
memory · Summary
An MCP server implementing persistent memory using a local knowledge graph for AI models to remember user information across chats.
hass-mcp-server · Use cases
- Remote control of Home Assistant devices and automations through Claude web interface
- Automated configuration management of YAML files with automatic backups and validation
- System monitoring and troubleshooting using AI-powered prompts and completions
memory · Use cases
- Personalizing AI assistant interactions by remembering user preferences, history, and relationships
- Building context-aware chat applications that maintain conversation history
- Creating knowledge bases that persist across AI model sessions
hass-mcp-server · Install
Installation
HACS (Recommended)
- Open HACS in Home Assistant
- Search for "MCP Server"
- Click "Download"
- Restart Home Assistant
- Configure the integration
Claude Desktop Integration
{
"mcpServers": {
"home-assistant": {
"command": "npx",
"args": ["@modelcontextprotocol/server-homeassistant"],
"env": {
"HOME_ASSISTANT_URL": "https://your-home-assistant.com",
"HOME_ASSISTANT_TOKEN": "your-long-lived-token"
}
}
}
}memory · Install
Installation
Claude Desktop
Add to your claude_desktop_config.json:
{
"mcpServers": {
"memory": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-memory"
]
}
}
}VS Code
Use one-click installation buttons or manually configure in .vscode/mcp.json:
{
"servers": {
"memory": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-memory"
]
}
}
}Docker
{
"mcpServers": {
"memory": {
"command": "docker",
"args": ["run", "-i", "-v", "claude-memory:/app/dist", "--rm", "mcp/memory"]
}
}
}