Install
openclaw skills install homeassistant-mcpProvides structured access to Home Assistant devices, sensors, and cameras via MCP, with specific handling for cameras, garage doors, and device control.
openclaw skills install homeassistant-mcpThis skill provides structured access to Home Assistant via its native MCP (Model Context Protocol) integration. It provides tools and context for interacting with devices, sensors, and cameras in the smart home.
The MCP server endpoint is http://220.0.0.5:8123/api/mcp.
Ensure the connection is configured with the correct Long-Lived Access Token.
Camera Snapshots:
MCP tools for cameras (video_garage, homeassistant___XXXXX) DO NOT WORK!
Always use exec with curl to the REST API to get camera snapshots:
curl -s -H "Authorization: Bearer <TOKEN>" "http://220.0.0.5:8123/api/camera_proxy/camera.<entity_id>" -o /home/clawd/.openclaw/workspace/<filename>.jpg
After fetching, verify it's a JPEG with file, then display it using the MEDIA:<path> directive.
Garage Operations:
HassTurnOff = OPEN, HassTurnOn = CLOSE.current_position: 0 or state.Garage 2 Motion as it produces false positives.Device Control:
homeassistant__forced tool.Status Checks:
homeassistant__GetLiveContext to get a snapshot of all exposed entities.curl -H "Authorization: Bearer <TOKEN>" http://220.0.0.5:8123/api/states/<entity_id>Review /home/clawd/.openclaw/workspace/memory/home-assistant-entities.md for a full list of areas and key entities.