Control Home Assistant with AI
MCP server for Home Assistant - query and control entities, automations, history, and logs, with guided automation prompts.
Maintainer of this project? Claim this page to edit the listing.
0.4.1Add to Favorites
Why it matters
Enable AI assistants to directly interact with your Home Assistant instance, allowing for intelligent control and querying of your smart home devices and automations.
Outcomes
What it gets done
Query device states and sensor data
Control lights, switches, and other entities
List and manage automations
Troubleshoot smart home systems and entities
Install
Add it to your toolbox
Run in your project directory:
curl -fsSL https://spark.entire.vc/get/vb-home-assistant | bash Capabilities
Tools your agent gets
Get the Home Assistant version
Get the state of a specific entity with optional field filtering
Perform actions on entities (turn on, turn off, toggle)
Get a list of entities with optional domain filtering and search
Find entities matching a query
Get a summary of entities in a domain
Get a list of all automations
Call any Home Assistant service
Overview
Home Assistant MCP Server
Hass-MCP lets an AI assistant query and control Home Assistant entities, manage automations, and review history, statistics, and error logs, with guided prompts for automation tasks. Use it for conversational smart-home control and automation troubleshooting; never expose the HTTP transport to the internet without a reverse proxy, VPN, or localhost-only binding.
What it does
Hass-MCP lets AI assistants like Claude interact directly with a Home Assistant instance: querying device/sensor state, controlling lights and switches, summarizing a smart home by domain, troubleshooting automations and entities, searching for specific entities, and reading history, statistics, and error logs. Responses use lean JSON to minimize token usage, and log/history tools apply server-side filtering so noisy data doesn't blow out context.
It also ships guided-conversation prompts for common tasks - creating or debugging automations, troubleshooting an entity, optimizing routines based on actual usage, auditing entity naming consistency, and generating dashboard layouts.
When to use - and when NOT to
Use this connector when you want an assistant to check or control smart-home devices, diagnose why an automation isn't firing, review error logs for a failing integration, or pull historical/statistical data (e.g. power usage trends) from Home Assistant.
Do not expose the HTTP transport mode to the open internet without authentication - it grants full remote control (lights, locks, automations, restarts) with no built-in auth layer, so it must sit behind a reverse proxy, VPN, or be bound to localhost only. Stdio/Docker mode with a Long-Lived Access Token is the safer default for single-client use.
Inputs and outputs
Tools take entity IDs, domains, service names, or search queries, plus optional time ranges (ISO-8601) for history/statistics tools. Outputs are entity states and attributes, action confirmations, domain summaries, automation lists, historical state-change data, aggregated statistics (mean/min/max per bucket), or filtered error log lines.
Capabilities
get_entity/list_entities/search_entities_tool/domain_summary_tool: query entity state, list/search entities, summarize a domainentity_action/call_service_tool: control entities or call any Home Assistant servicelist_automations/restart_ha: manage automations and restart Home Assistantget_history/get_history_range/get_statistics/get_statistics_range: state history and long-term aggregated statistics over a time window or rangeget_error_log: filtered error log by level/integration/search termget_entities_by_area: list entities in a specific room/area- Guided prompts:
create_automation,debug_automation,troubleshoot_entity,routine_optimizer,automation_health_check,entity_naming_consistency,dashboard_layout_generator
How to install
Requires a Home Assistant Long-Lived Access Token. Docker (recommended) for Claude Desktop:
{
"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" }
}
}
}
Or via uvx hass-mcp with the same HA_URL/HA_TOKEN env vars. For HTTP/streamable transport (--http --port 8000), put it behind a reverse proxy or VPN before exposing it beyond localhost.
Who it's for
Home Assistant users who want an AI assistant to check, control, and troubleshoot their smart home conversationally.
Source README
Hass-MCP
A Model Context Protocol (MCP) server for Home Assistant integration with Claude and other LLMs.
Overview
Hass-MCP enables AI assistants like Claude to interact directly with your Home Assistant instance, allowing them to:
- Query the state of devices and sensors
- Control lights, switches, and other entities
- Get summaries of your smart home
- Troubleshoot automations and entities
- Search for specific entities
- Create guided conversations for common tasks
Screenshots
Features
- Entity Management: Get states, control devices, and search for entities
- Domain Summaries: Get high-level information about entity types
- Automation Support: List and control automations
- Guided Conversations: Use prompts for common tasks like creating automations
- Smart Search: Find entities by name, type, or state
- Token Efficiency: Lean JSON responses to minimize token usage
Installation
Prerequisites
- Home Assistant instance with Long-Lived Access Token
- One of the following:
- Docker (recommended)
- Python 3.13+ and uv
Setting Up With Claude Desktop
Docker Installation (Recommended)
Pull the Docker image:
docker pull voska/hass-mcp:latestAdd the MCP server to Claude Desktop:
a. Open Claude Desktop and go to Settings
b. Navigate to Developer > Edit Config
c. Add the following configuration to yourclaude_desktop_config.jsonfile:{ "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" } } } }d. Replace
YOUR_LONG_LIVED_TOKENwith your actual Home Assistant long-lived access token
e. Update theHA_URL:- If running Home Assistant on the same machine: use
http://host.docker.internal:8123(Docker Desktop on Mac/Windows) - If running Home Assistant on another machine: use the actual IP or hostname
f. Save the file and restart Claude Desktop
- If running Home Assistant on the same machine: use
The "Hass-MCP" tool should now appear in your Claude Desktop tools menu
Note: If you're running Home Assistant in Docker on the same machine, you may need to add
--network hostto the Docker args for the container to access Home Assistant. Alternatively, use the IP address of your machine instead ofhost.docker.internal.
uv/uvx
Install uv on your system.
Add the MCP server to Claude Desktop:
a. Open Claude Desktop and go to Settings
b. Navigate to Developer > Edit Config
c. Add the following configuration to yourclaude_desktop_config.jsonfile:{ "mcpServers": { "hass-mcp": { "command": "uvx", "args": ["hass-mcp"], "env": { "HA_URL": "http://homeassistant.local:8123", "HA_TOKEN": "YOUR_LONG_LIVED_TOKEN" } } } }d. Replace
YOUR_LONG_LIVED_TOKENwith your actual Home Assistant long-lived access token
e. Update theHA_URL:- If running Home Assistant on the same machine: use
http://host.docker.internal:8123(Docker Desktop on Mac/Windows) - If running Home Assistant on another machine: use the actual IP or hostname
f. Save the file and restart Claude Desktop
- If running Home Assistant on the same machine: use
The "Hass-MCP" tool should now appear in your Claude Desktop tools menu
Other MCP Clients
Cursor
- Go to Cursor Settings > MCP > Add New MCP Server
- Fill in the form:
- Name:
Hass-MCP - Type:
command - Command:
docker run -i --rm -e HA_URL=http://homeassistant.local:8123 -e HA_TOKEN=YOUR_LONG_LIVED_TOKEN voska/hass-mcp - Replace
YOUR_LONG_LIVED_TOKENwith your actual Home Assistant token - Update the HA_URL to match your Home Assistant instance address
- Name:
- Click "Add" to save
Claude Code (CLI)
To use with Claude Code CLI, you can add the MCP server directly using the mcp add command:
Using Docker (recommended):
claude mcp add hass-mcp -e HA_URL=http://homeassistant.local:8123 -e HA_TOKEN=YOUR_LONG_LIVED_TOKEN -- docker run -i --rm -e HA_URL -e HA_TOKEN voska/hass-mcp
Replace YOUR_LONG_LIVED_TOKEN with your actual Home Assistant token and update the HA_URL to match your Home Assistant instance address.
HTTP Transport (Streamable)
For deployments that can't use stdio - running behind an MCP gateway, hosting on Smithery, sharing one server across multiple clients, or connecting from network-based tools like LibreChat or OpenWebUI - Hass-MCP supports the MCP streamable HTTP transport. The server runs in stateless mode (no Mcp-Session-Id, JSON responses), suitable for horizontally-scaled hosts.
Running locally
Using uvx:
HA_URL=http://homeassistant.local:8123 \
HA_TOKEN=YOUR_LONG_LIVED_TOKEN \
uvx hass-mcp --http --port 8000
The server binds 127.0.0.1 by default. Override with --host 0.0.0.0 only when you've also configured auth in front of it.
Running in Docker
docker run --rm -p 8000:8000 \
-e HA_URL=http://homeassistant.local:8123 \
-e HA_TOKEN=YOUR_LONG_LIVED_TOKEN \
voska/hass-mcp:latest --http --host 0.0.0.0 --port 8000
--host 0.0.0.0 is required inside Docker so the port is reachable through the bridge. Bind the publish (-p) to 127.0.0.1:8000:8000 if you only want it reachable from the host, or put a reverse proxy in front.
Endpoint
The MCP endpoint is at /mcp. Point your client at http://<host>:<port>/mcp.
Smithery / PaaS
The server honors the PORT environment variable (Smithery's convention) in addition to MCP_PORT. Smithery deployment requires --http mode and reads PORT automatically.
Custom / private CA
If your Home Assistant instance serves a certificate signed by your own CA (step-ca, smallstep, homelab OpenSSL), hass-mcp can verify it without disabling TLS:
- Locally: install the CA root in your OS trust store (macOS Keychain, Windows Cert Store, or
update-ca-certificateson Linux). hass-mcp picks it up automatically via truststore. - In Docker (or any sandboxed runtime): bind-mount the CA file and point
SSL_CERT_FILEat it.
docker run --rm \
-v /path/to/your-ca.crt:/etc/ssl/certs/your-ca.crt:ro \
-e SSL_CERT_FILE=/etc/ssl/certs/your-ca.crt \
-e HA_URL=https://homeassistant.example.internal:8123 \
-e HA_TOKEN=YOUR_LONG_LIVED_TOKEN \
voska/hass-mcp:latest
SSL_CERT_FILE always takes precedence over the OS store when set. verify=False is intentionally not supported - use HA_URL=http://... if you genuinely want unencrypted local LAN traffic.
Usage Examples
Here are some examples of prompts you can use with Claude once Hass-MCP is set up:
- "What's the current state of my living room lights?"
- "Turn off all the lights in the kitchen"
- "What's the temperature in the master bedroom?"
- "List everything in the guest room"
- "List all my sensors that contain temperature data"
- "Give me a summary of my climate entities"
- "Create an automation that turns on the lights at sunset"
- "Help me troubleshoot why my bedroom motion sensor automation isn't working"
- "Search for entities related to my living room"
- "Show me the last 50 ERROR lines from the Home Assistant log"
- "What's been failing on the mqtt integration today?"
- "Show me power usage by day for the last month"
- "What happened with the front door sensor last Tuesday?"
Available Tools
Hass-MCP provides several tools for interacting with Home Assistant:
get_version: Get the Home Assistant versionget_entity: Get the state of a specific entity with optional field filteringentity_action: Perform actions on entities (turn on, off, toggle)list_entities: Get a list of entities with optional domain filtering and searchsearch_entities_tool: Search for entities matching a querydomain_summary_tool: Get a summary of a domain's entitieslist_automations: Get a list of all automationscall_service_tool: Call any Home Assistant servicerestart_ha: Restart Home Assistantget_history: Get the state history of an entity (last N hours)get_history_range: Get state-change history for an entity over an
explicit date/time range (start_time/end_time, ISO-8601)get_statistics: Get long-term aggregated statistics (mean / min / max
per bucket) for an entity over the last N hours - works for data older
than the recorder's short-term retention windowget_statistics_range: Same, but for an explicit date/time range -
useful for monthly / yearly trend queriesget_error_log: Get the Home Assistant error log, with optionallevel/integration/search_term/linesfilters applied
server-side so noisy logs don't blow Claude's contextget_entities_by_area: List entities in a specific area / room
Prompts for Guided Conversations
Hass-MCP includes several prompts for guided conversations:
create_automation: Guide for creating Home Assistant automations based on trigger typedebug_automation: Troubleshooting help for automations that aren't workingtroubleshoot_entity: Diagnose issues with entitiesroutine_optimizer: Analyze usage patterns and suggest optimized routines based on actual behaviorautomation_health_check: Review all automations, find conflicts, redundancies, or improvement opportunitiesentity_naming_consistency: Audit entity names and suggest standardization improvementsdashboard_layout_generator: Create optimized dashboards based on user preferences and usage patterns
Available Resources
Hass-MCP provides the following resource endpoints:
hass://entities/{entity_id}: Get the state of a specific entityhass://entities/{entity_id}/detailed: Get detailed information about an entity with all attributeshass://entities: List all Home Assistant entities grouped by domainhass://entities/domain/{domain}: Get a list of entities for a specific domainhass://search/{query}/{limit}: Search for entities matching a query with custom result limit
Development
Running Tests
uv run pytest tests/
FAQ
Common questions
Discussion
Questions & comments · 0
Sign In Sign in to leave a comment.