Give AI assistants full control over your smart home. 276 tools across 27 domains — entities (with bulk voice exposure), automations & scripts (CRUD + traces + last-failed shortcuts), dashboards, energy, voice pipelines, blueprints, calendar, HACS, Supervisor, themes, self-documenting Card Builder (visual drag-and-drop cards, recipe builder with embedded block schema + style categories + style targets + style snippets + upstream sync check), aggregated snapshot (one-call context), BM25 tool search (find the right tool without memorising 270 names), HA-aware YAML validation (!include, !secret), git versioning, and more.
Works with Claude Code, Claude Desktop, VS Code, Cursor, Windsurf, OpenAI Codex CLI, Gemini CLI.
Click the button below to add the Nexus Agent repository to your Home Assistant instance, then install the add-on:
- Click the Open Add-on Repository on MY button above
- Find Nexus Agent in the Add-on Store → Install → Start
- Open Web UI — copy your MCP URL and paste it into your AI client
If the MY button does not work for your setup:
-
In Home Assistant go to Settings → Add-ons → Add-on Store
-
Click the three-dot menu (⋮) → Repositories
-
Add:
https://github.com/Fistacho/ha-nexus-agent -
Find Nexus Agent → Install → Start → Open Web UI
The web UI shows your API key and generates ready-to-paste config for every MCP client. No manual token setup.
git clone https://github.com/Fistacho/ha-nexus-agent
cd ha-nexus-agent
pip install -r requirements.txt
cp .env.example .env
# Edit .env: set HA_URL and HA_TOKEN
python server.pyOpen http://localhost:7123 to get your API key and MCP client configs.
- In HA: Profile → Security → Long-Lived Access Tokens
- Create Token → name it
nexus - Paste as
HA_TOKENin.env
Open http://your-ha-ip:7123 after starting Nexus. The setup page generates the exact config for each client.
All clients connect to:
http://your-ha-ip:7123/mcp?token=YOUR_API_KEY
claude mcp add nexus --transport sse "http://your-ha-ip:7123/mcp?token=YOUR_API_KEY" --scope usercodex mcp add nexus --url "http://your-ha-ip:7123/mcp?token=YOUR_API_KEY"gemini mcp add nexus --url "http://your-ha-ip:7123/mcp?token=YOUR_API_KEY"Create .vscode/mcp.json:
{
"servers": {
"nexus": {
"type": "sse",
"url": "http://your-ha-ip:7123/mcp?token=YOUR_API_KEY"
}
}
}Add to ~/.cursor/mcp.json:
{
"mcpServers": {
"nexus": {
"url": "http://your-ha-ip:7123/mcp?token=YOUR_API_KEY",
"type": "sse"
}
}
}Add to ~/.codeium/windsurf/mcp_config.json:
{
"mcpServers": {
"nexus": {
"url": "http://your-ha-ip:7123/mcp?token=YOUR_API_KEY",
"type": "sse"
}
}
}Add to %APPDATA%/Claude/claude_desktop_config.json (Win) or ~/Library/Application Support/Claude/claude_desktop_config.json (Mac):
{
"mcpServers": {
"nexus": {
"command": "python",
"args": ["server.py"],
"cwd": "/path/to/ha-nexus-agent",
"env": {
"HA_URL": "http://homeassistant.local:8123",
"HA_TOKEN": "your_ha_token_here"
}
}
}
}Tip: Copy the exact config with your real key from the Nexus web UI at
http://your-ha-ip:7123.
276 tools across 27 categories:
| Category | Count | Highlights |
|---|---|---|
entities_* |
17 | list, turn on/off/toggle, bulk_control, voice expose |
services_* |
19 | call_service, notify, light color, camera snapshot/record |
automations_* |
21 | CRUD + full YAML, traces, scripts, scenes |
blueprints_* |
4 | list, import from URL, delete, instantiate |
areas_* |
8 | list, create, get_states, control_area |
devices_* |
4 | list, update (rename/move/disable), remove |
calendar_* |
4 | list calendars/events, create/delete event |
todo_* |
5 | list, add/update/remove items |
helpers_* |
11 | input_boolean/number/text/select, timers, counters |
history_* |
5 | state history, logbook, error log |
system_* |
9 | check_config, backup, restart, list integrations |
dashboards_* |
6 | get/save dashboard config, add cards/views |
files_* |
6 | read/write config files, YAML validation |
git_* |
11 | commit, rollback, log, safe_write_with_checkpoint |
ws_* |
7 | listen state changes, events, subscribe_trigger |
supervisor_* |
20 | add-on install/start/stop/update, backups, core/host info |
hacs_* |
7 | list/install/uninstall/update HACS repos |
energy_* |
9 | grid, solar, battery sources, energy preferences |
zones_* |
8 | create/update/delete zones, person location |
labels_* |
13 | labels, categories, assign to entities/devices |
search_* |
7 | fuzzy search, orphan devices, unused entities |
integrations_* |
12 | config_flow (install like in UI), options flow CRUD, enable/disable |
voice_* |
9 | Assist pipelines CRUD, STT/TTS/wake-word engines |
themes_* |
8 | list/create/update/delete Lovelace themes |
card_builder_* |
32 | Cards CRUD, style presets, CSS properties, media, renderer config, embedded block schema (list_block_types, get_block_schema, list_button_toggle_features), embedded styles knowledge (list_style_categories, list_style_targets, list_style_snippets, get_style_snippet, build_styles), 10 turnkey templates (list_card_templates, get_card_template, make_template_card — tile_simple, tile_action, climate_full, cover_panel, light_dimmer, sensor_hero, media_panel, weather_pretty, gauge_radial, stat_compare), recipe guide, build_from_recipe high-level builder (auto-wraps props), validate_config structural check, check_schema_sync upstream drift detection |
snapshot_* |
2 | Aggregated one-call context — states + areas + devices + entities + integrations, with filters |
discover_* |
4 | BM25 tool search — query the 259-tool catalogue, list namespaces, fetch full docstrings |
- 270 MCP tools across 27 categories — the most complete HA MCP server
- Built-in tool search —
discover_tool_search("query")finds the right tool without flooding the AI's working memory - Real-time WebSocket — subscribe to state changes, events and triggers live
- Git versioning — every config change auto-committed, instant rollback
- YAML validation before writing any config file
- Setup web UI — generates ready-to-use MCP config for every client
- HA Add-on native — one-click install, no manual token setup
- API key auth — MCP endpoint protected, token via URL or Bearer header
Nexus keeps a git history of your HA config directory. Before every risky change, use git_safe_write_with_checkpoint — it commits current state first, then applies the change.
git_init_config()
git_safe_write_with_checkpoint("automations.yaml", new_content)
git_rollback_file("automations.yaml") # undo single file
git_rollback_to_commit("abc1234") # full rollback
git_log(limit=10) # see history| Variable | Required | Default | Description |
|---|---|---|---|
HA_URL |
Yes | http://homeassistant.local:8123 |
Home Assistant URL |
HA_TOKEN |
Standalone only | — | Long-lived access token |
SUPERVISOR_TOKEN |
Add-on only | auto-injected | Set automatically by HA |
HA_CONFIG_PATH |
For git/file tools | /config |
Path to HA config directory |
NEXUS_API_KEY |
No | auto-generated | Pin to a specific API key |
NEXUS_PORT |
No | 7123 |
HTTP server port |
See Releases for full history.