โ ๏ธ Status (late May 2026): ha-mcp is currently unreachable because
fpvehas been disconnected from NetBird since 2026-05-24. The wiring below is correct; the blocker is the farm-network outage โ evenpve(home Proxmox) can’t pingfpve.netbird.cloud. The MCP itself loaded fine after Claude Desktop restart; it just can’t reach 192.168.0.10. See Farm โ Brownsville for the outage details.
The ha-mcp add-on runs inside Home Assistant OS and exposes 85 tools to Claude Desktop via the Model Context Protocol. Claude can query devices, control entities, manage automations, inspect integrations, and more โ all without leaving the chat.
- Add-on:
addon_81f33d0f_ha_mcp(v7.5.0) - URL:
http://192.168.0.10:9583/private_<secret-path> - Auth model: Secret-path-in-URL (no Bearer token). The secret path is generated on first install and persists at
/data/secret_path.txtinside the add-on container across restarts. - Tools: 85 (discovery, device/integration mgmt, state control, CRUD, templates, traces, history, addons, HACS, system, blueprints, camera, todo, bundled docs)
The config block lives in ~/Sync/ED/config/claude_desktop_config.json (symlinked to ~/Library/Application Support/Claude/claude_desktop_config.json on both Mac Studio and MacBook).
"ha-mcp": {
"command": "npx",
"args": [
"-y", "mcp-remote",
"http://192.168.0.10:9583/private_<secret-path>",
"--transport", "http-only",
"--allow-http"
]
}
Critical: The --allow-http flag is required because mcp-remote refuses non-HTTPS URLs without it. This was the blocker on initial MacBook setup (2026-05-23).
Claude Desktop (Mac Studio / MacBook)
โ NetBird mesh VPN
โ fpve.netbird.cloud (100.123.49.175)
routes 192.168.0.0/24 (farm LAN)
โ Home Assistant at 192.168.0.10:9583
HA does not run NetBird itself. Reachability from any NetBird peer goes through fpve’s advertised route for the 192.168.0.0/24 subnet. Both Mac Studio and MacBook must have that route enabled in their NetBird client (NetBird app โ Routes โ confirm 192.168.0.0/24 is selected).
On the farm LAN (MacBook at Brownsville), HA is reachable directly at 192.168.0.10:9583 โ no NetBird needed.
To rotate the secret path:
- SSH into HA:
ssh ha(userdelgross, port 22, key~/.ssh/ha_id_ed25519) - Delete the secret file inside the add-on container (path varies by supervisor version)
- Restart the add-on โ it regenerates a new secret path
- Update
claude_desktop_config.jsonwith the new URL on both machines - Restart Claude Desktop on both Studio and MacBook
Full consumer map entry in ~/Sync/ED/SECRETS.md.
Claude Desktop log: ~/Library/Logs/Claude/mcp-server-ha-mcp.log
Common issues:
- “HTTPS required” error โ missing
--allow-httpflag in config args - Connection refused โ NetBird route for
192.168.0.0/24not enabled, or HA is down - Timeout โ fpve (farm Proxmox) is offline or NetBird mesh not converged
- 403 / auth error โ secret path changed; check
/data/secret_path.txton HA
Smoke test prompt: “List the areas in Home Assistant” โ should return 13 areas (Barn, Garage, Kitchen, etc.)