|
| 1 | +--- |
| 2 | +# GENERATED FILE — do not edit. Translations live in |
| 3 | +# src/ha_mcp/settings_ui/locales/nl.json (keys addon.*, features.*, |
| 4 | +# addon_dev.*); regenerate with: python scripts/generate_locales.py |
| 5 | +configuration: |
| 6 | + backup_hint: |
| 7 | + name: Full-HA snapshot suggestion level (LLM-facing) |
| 8 | + description: 'Tunes the wording of the hint the LLM sees in the |
| 9 | +
|
| 10 | + `ha_manage_backup(scope=''snapshot'')` tool description for when to |
| 11 | +
|
| 12 | + suggest a full Home Assistant tarball backup before risky operations |
| 13 | +
|
| 14 | + (e.g. mass device deletes). Affects ONLY this one LLM-facing prompt |
| 15 | +
|
| 16 | + sentence. |
| 17 | +
|
| 18 | +
|
| 19 | + For per-edit automatic snapshots of automations / scripts / helpers / |
| 20 | +
|
| 21 | + etc., use the separate **Enable auto-backup of edits** toggle below.' |
| 22 | + secret_path: |
| 23 | + name: Secret path override |
| 24 | + description: 'Optional custom HTTP path for the MCP server. Leave empty to use |
| 25 | + the auto-generated secure path. |
| 26 | +
|
| 27 | + ' |
| 28 | + enable_tool_search: |
| 29 | + name: Enable tool search |
| 30 | + description: 'Replace the full tool catalog with search-based discovery. Reduces |
| 31 | + idle context by roughly 90%, to about 5K tokens. ⚠️ Do NOT enable this in clients |
| 32 | + with their own built-in tool search / deferred tools (claude.ai, Claude Desktop, |
| 33 | + Claude Code) — the two search layers conflict, and the client''s built-in tool |
| 34 | + search is the better choice there; leave this off. Whether tools are deferred |
| 35 | + depends on your client and model combination: use this when your setup loads |
| 36 | + the full catalog up front — models without native deferred tools (e.g. Gemini, |
| 37 | + OpenAI-compatible local models, Claude Haiku), clients that inline all tool |
| 38 | + schemas regardless of model (e.g. GitHub Copilot CLI), or smaller context windows. |
| 39 | + Some Codex models and ChatGPT include deferred tools too — check your client/model |
| 40 | + directly to confirm its features so you don''t leave this enabled unnecessarily. |
| 41 | + Tools are found via ha_search_tools and executed via categorized proxies (read/write/delete). |
| 42 | + Requires restart to take effect.' |
| 43 | + enable_tool_security_policies: |
| 44 | + name: Enable Tool Security Policies (advanced) |
| 45 | + description: Gate high-stakes tool calls (lock/alarm control, automation writes, |
| 46 | + etc.) behind user approval. When a guarded tool is called, the agent tells the |
| 47 | + user to open the Tool Security Policies tab in the web UI and click Approve |
| 48 | + before the call proceeds. Per-tool rules with optional argument conditions are |
| 49 | + configured in the Tool Security Policies tab. Off by default. Requires restart |
| 50 | + to take effect. |
| 51 | + read_only_mode: |
| 52 | + name: Read Only Mode |
| 53 | + description: Toggles all write tools off, and removes ability for tools to make |
| 54 | + any write or destructive calls. Mixed read/write tools (backups, add-ons, energy |
| 55 | + preferences, voice pipelines, and code mode when enabled) stay available with |
| 56 | + their write operations blocked. Same toggle as the web UI Tools tab. Off by |
| 57 | + default. Requires restart to take effect. |
| 58 | + enable_beta_features: |
| 59 | + name: Enable beta features (master) |
| 60 | + description: ⚠ DANGER — these tools can PERMANENTLY DAMAGE your Home Assistant |
| 61 | + installation. They write to your YAML config, your filesystem, install custom |
| 62 | + components, run arbitrary sandboxed Python, and edit tool docstrings the AI |
| 63 | + sees. There is no warranty and no support guarantee — you enable them at your |
| 64 | + OWN RISK. Take a Home Assistant backup before turning this on, and never enable |
| 65 | + in production without one. Master gate for the 5 experimental sub-flags below; |
| 66 | + sub-flags are ignored at runtime while this master is off, even when explicitly |
| 67 | + set to true. The same toggle is also surfaced in the web settings UI under "Beta |
| 68 | + features (dangerous)" — either surface reflects the other on restart. |
| 69 | + enable_yaml_config_editing: |
| 70 | + name: Enable YAML config editing (beta) |
| 71 | + description: Beta feature. Allows AI assistants to add, replace, or remove top-level |
| 72 | + keys in configuration.yaml and packages/*.yaml. Only whitelisted keys are allowed |
| 73 | + (e.g., template, sensor, command_line, mqtt, knx); core keys like homeassistant, |
| 74 | + http, and recorder are blocked. Each edit validates YAML syntax, runs a config |
| 75 | + check, and creates an automatic backup. Changes to most keys require a full |
| 76 | + HA restart to take effect. See docs/beta.md for known limitations. Dedicated |
| 77 | + tools (automations, scripts, scenes, helpers, template sensors) should be preferred |
| 78 | + when available. REQUIRES the master "Enable beta features" toggle above (and |
| 79 | + in the web UI) to be on — otherwise this sub-flag is ignored at runtime regardless |
| 80 | + of its value here. |
| 81 | + enable_yaml_packages_automation: |
| 82 | + name: Allow automation in packages/*.yaml |
| 83 | + description: Sub-toggle of YAML config editing. When on, ha_config_set_yaml accepts |
| 84 | + yaml_path='automation' inside packages/*.yaml. When off, the call is rejected |
| 85 | + both client-side and server-side. The storage-mode tool (ha_config_set_automation) |
| 86 | + is unaffected. Default OFF; only takes effect when "Enable YAML config editing" |
| 87 | + above is also on. |
| 88 | + enable_yaml_packages_script: |
| 89 | + name: Allow script in packages/*.yaml |
| 90 | + description: Sub-toggle of YAML config editing. When on, ha_config_set_yaml accepts |
| 91 | + yaml_path='script' inside packages/*.yaml. When off, the call is rejected both |
| 92 | + client-side and server-side. The storage-mode tool (ha_config_set_script) is |
| 93 | + unaffected. Default OFF; only takes effect when "Enable YAML config editing" |
| 94 | + above is also on. |
| 95 | + enable_yaml_packages_scene: |
| 96 | + name: Allow scene in packages/*.yaml |
| 97 | + description: Sub-toggle of YAML config editing. When on, ha_config_set_yaml accepts |
| 98 | + yaml_path='scene' inside packages/*.yaml. When off, the call is rejected both |
| 99 | + client-side and server-side. The storage-mode tool (ha_config_set_scene) is |
| 100 | + unaffected. Default OFF; only takes effect when "Enable YAML config editing" |
| 101 | + above is also on. |
| 102 | + enable_yaml_edit_confirm: |
| 103 | + name: Require confirmation for YAML edits (diff preview) |
| 104 | + description: 'Sub-toggle of YAML config editing, ON by default (recommended). |
| 105 | + The first ha_config_set_yaml call returns a unified diff of exactly what would |
| 106 | + change on disk plus a confirm token and writes nothing; the edit only lands |
| 107 | + when the call is repeated with that token. Exists so unintended changes outside |
| 108 | + the requested edit are caught before they reach disk (issue #1720). Turn off |
| 109 | + only to save one round-trip per edit.' |
| 110 | + enable_code_mode: |
| 111 | + name: Enable custom tool sandbox (beta) |
| 112 | + description: Beta feature. Enables the ha_manage_custom_tool tool, which lets |
| 113 | + AI assistants create, run, save, and delete custom Python code in a secure sandbox |
| 114 | + when no built-in tool can handle the request. Code runs in an isolated interpreter |
| 115 | + with no filesystem or arbitrary network access. Sandbox code can hit the HA |
| 116 | + REST API (api_get/api_post), send WebSocket commands (ws_send), call existing |
| 117 | + MCP tools (call_tool), or remove a saved tool (delete_saved_tool). Saved tools |
| 118 | + persist to /data/saved_tools.json by default so they survive add-on restarts, |
| 119 | + and are visible to any client that can connect. See docs/beta.md for known limitations. |
| 120 | + Requires restart to take effect. REQUIRES the master "Enable beta features" |
| 121 | + toggle above (and in the web UI) to be on — otherwise this sub-flag is ignored |
| 122 | + at runtime regardless of its value here. |
| 123 | + enable_lite_docstrings: |
| 124 | + name: Enable lite tool docstrings (beta) |
| 125 | + description: 'Beta feature. Replaces the docstrings on a handful of heavy ha-mcp |
| 126 | + tools (automations, scripts, scenes, helpers, dashboards, ha_call_service, ha_config_set_yaml) |
| 127 | + with shorter variants that defer schema and example detail to the ha_get_skill_guide |
| 128 | + tool (or its skill:// resource). WARNING: this reduces idle token usage, but |
| 129 | + may degrade LLM performance — the trimmed descriptions rely on the LLM actually |
| 130 | + calling the skill tool or reading the skill resource for detail, which is not |
| 131 | + guaranteed (some models will skip the extra tool call and end up with less guidance |
| 132 | + than they had before). Best paired with a client that supports MCP resources |
| 133 | + or with enable_tool_search. Requires restart to take effect. REQUIRES the master |
| 134 | + "Enable beta features" toggle above (and in the web UI) to be on — otherwise |
| 135 | + this sub-flag is ignored at runtime regardless of its value here.' |
| 136 | + enable_mandatory_bps: |
| 137 | + name: Attach best-practice skills on writes |
| 138 | + description: 'Master switch for the write-tool skill content delivery feature |
| 139 | + (issue #1182). When enabled (default), the six config write tools (automations, |
| 140 | + scripts, scenes, helpers, dashboards, raw YAML) attach the canonical Home Assistant |
| 141 | + best-practice reference files under `skill_content` on every successful write, |
| 142 | + plus auto-embed any reference sections cited by best-practice warnings. Each |
| 143 | + tool also exposes a per-call `MandatoryBPS` parameter the agent can set to false |
| 144 | + on subsequent calls once it has the content. When this master switch is off, |
| 145 | + NO skill_content goes out regardless of the per-call parameter or BP warnings. |
| 146 | + Recommended ON as the first choice; disable only for models with very small |
| 147 | + context windows. Turning this off may degrade write accuracy. Requires restart |
| 148 | + to take effect.' |
| 149 | + enable_strict_mandatory_bps: |
| 150 | + name: Strict best-practices mode |
| 151 | + description: 'Strict mode: prevents the client from using the tool until it can |
| 152 | + prove that it read the best practices. While on, the six best-practice write |
| 153 | + tools (automations, scripts, scenes, helpers, dashboards, raw YAML) are blocked |
| 154 | + and return an error directing the client to read the best-practices skill via |
| 155 | + ha_get_skill_guide and pass back the acknowledgment key it obtains there. While |
| 156 | + on, the ha_get_skill_guide tool is locked enabled — it is the only publisher |
| 157 | + of the acknowledgment key. Child of the "Attach best-practice skills on writes" |
| 158 | + option above and inert while that parent is off. Requires restart to take effect.' |
| 159 | + enable_filesystem_tools: |
| 160 | + name: Enable filesystem tools (beta) |
| 161 | + description: 'Sets HAMCP_ENABLE_FILESYSTEM_TOOLS=true. Enables direct file read/write |
| 162 | + access to your Home Assistant filesystem. WARNING: This gives the MCP server |
| 163 | + sensitive direct file access to your system. Only enable if you trust the AI |
| 164 | + assistant with file operations. Requires restart to take effect. REQUIRES the |
| 165 | + master "Enable beta features" toggle above (and in the web UI) to be on — otherwise |
| 166 | + this sub-flag is ignored at runtime regardless of its value here.' |
| 167 | + enable_dashboard_screenshot: |
| 168 | + name: Enable dashboard screenshot mode (beta) |
| 169 | + description: Beta feature — disabled by default. Adds the ha_get_dashboard_screenshot |
| 170 | + tool plus include_screenshot / return_screenshot options on the dashboard get/set |
| 171 | + tools, so AI assistants can inspect one or more responsive Lovelace images (e.g. |
| 172 | + to verify a dashboard they just created). Supports stable named views, mobile/tablet/desktop |
| 173 | + batches, and PNG/JPEG/WebP/BMP output. Rendering runs in a separate, opt-in |
| 174 | + engine — balloob's "Puppet" add-on (headless Chromium) — which you install once |
| 175 | + (add balloob's add-on repository, then install "Puppet") and give a long-lived |
| 176 | + access token; on Docker/Container deployments you run that engine as a sidecar |
| 177 | + and set HAMCP_DASHBOARD_SCREENSHOT_ENGINE_URL. Nothing heavy is installed unless |
| 178 | + you both enable this and install the engine. Requires restart to take effect. |
| 179 | + REQUIRES the master "Enable beta features" toggle above (and in the web UI) |
| 180 | + to be on — otherwise this sub-flag is ignored at runtime regardless of its value |
| 181 | + here. |
| 182 | + enable_auto_backup: |
| 183 | + name: Enable auto-backup of edits |
| 184 | + description: Captures a per-entity snapshot before every wrapped write/destructive |
| 185 | + MCP tool call (automation, script, scene, helper, dashboard, label, category, |
| 186 | + group, zone, area, calendar, todo, entity, integration, and sibling remove/delete |
| 187 | + tools). Snapshots are saved as YAML files under /data/ha_mcp_backups/ (override |
| 188 | + via HAMCP_BACKUP_DIR) and listed, restored, or deleted via the Backups tab in |
| 189 | + the web settings UI or via ha_manage_backup(scope='edits', ...). Best-effort |
| 190 | + — failures log a WARNING but never block the underlying write. On by default; |
| 191 | + uncheck to opt out. Requires restart to take effect. |
| 192 | + auto_backup_throttle_minutes: |
| 193 | + name: Auto-backup throttle (minutes) |
| 194 | + description: Per-entity throttle window. 0 (default) captures a snapshot on every |
| 195 | + wrapped write. N>0 captures at most one snapshot per N minutes per entity. Range |
| 196 | + 0–1440. |
| 197 | + auto_backup_retain_per_entity: |
| 198 | + name: Auto-backup retention (per entity) |
| 199 | + description: Maximum number of snapshots kept per entity. Older snapshots beyond |
| 200 | + this cap are rotated out on each successful capture. Default 100, range 1–10000. |
| 201 | + enable_snapshot_delete: |
| 202 | + name: Allow snapshot deletion |
| 203 | + description: Lets ha_manage_backup delete full HA snapshot tarballs (scope='snapshot', |
| 204 | + action='delete'). Off by default — a snapshot may be the last recovery point |
| 205 | + after a mistaken change, so a human must opt in here. Even when on, scheduled |
| 206 | + backups, the newest remaining snapshot, and anything younger than the age floor |
| 207 | + below stay protected. |
| 208 | + snapshot_delete_min_age_days: |
| 209 | + name: Minimum snapshot age to delete (days) |
| 210 | + description: A snapshot must be at least this old before it can be deleted. Range |
| 211 | + 0–365; 0 disables the floor (the newest-snapshot and scheduled-backup protections |
| 212 | + still apply). Default 7. |
| 213 | + tool_search_max_results: |
| 214 | + name: Tool search max results |
| 215 | + description: 'Maximum number of tools returned by ha_search_tools when tool search |
| 216 | + is enabled. Lower values (2-3) save context tokens but may miss relevant tools. |
| 217 | + Range: 2-10. Requires restart.' |
| 218 | + disabled_tools: |
| 219 | + name: Disabled tools (comma-separated) |
| 220 | + description: Tools listed here are forced off and locked in the web Settings UI |
| 221 | + (Tools tab) — they cannot be re-enabled there without unsetting this option |
| 222 | + first. A small set of mandatory tools (ha_search, ha_get_overview, ha_get_state, |
| 223 | + ha_report_issue, ha_manage_backup) cannot be disabled and keep running even |
| 224 | + if listed here. ha_get_skill_guide can be disabled only while strict best-practices |
| 225 | + mode (enable_strict_mandatory_bps) is off. Comma-separated tool names (e.g. |
| 226 | + ha_call_event,ha_eval_template). |
| 227 | + pinned_tools: |
| 228 | + name: Pinned tools (comma-separated) |
| 229 | + description: Tools listed here are locked pinned — they appear at the top of the |
| 230 | + Tools tab and cannot be unpinned from the web Settings UI without unsetting |
| 231 | + this option first. Useful in combination with Tool Search. Comma-separated tool |
| 232 | + names. |
| 233 | + verify_ssl: |
| 234 | + name: Verify TLS certificate |
| 235 | + description: Verify the Home Assistant server's TLS certificate. The add-on connects |
| 236 | + via the Supervisor proxy, so this normally has no effect and should stay enabled. |
| 237 | + Disable only if you've reconfigured the add-on to talk to HA over a public HTTPS |
| 238 | + hostname with a self-signed certificate or hostname mismatch. Disabling weakens |
| 239 | + transport security — leave on unless you know you need it. Requires restart |
| 240 | + to take effect. |
0 commit comments