forked from homeassistant-ai/ha-mcp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.yaml
More file actions
63 lines (63 loc) · 2.53 KB
/
Copy pathconfig.yaml
File metadata and controls
63 lines (63 loc) · 2.53 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
name: "Home Assistant MCP Server"
description: "AI assistant integration for Home Assistant via Model Context Protocol (MCP)"
version: "7.6.0"
slug: "ha_mcp"
url: "https://github.com/homeassistant-ai/ha-mcp"
arch:
- aarch64 # 64-bit ARM (Raspberry Pi 4+, modern ARM devices)
- amd64 # 64-bit x86 (most PCs and servers)
# Note: 32-bit platforms (armhf, armv7, i386) not supported
# uv base image only provides amd64 and arm64 builds
init: false
startup: application
boot: manual
# Expose the web Settings UI via Supervisor ingress (the "Open Web UI" button).
# start.py mounts the settings routes for the ingress proxy and binds 0.0.0.0;
# this declaration is what makes Supervisor render the button and proxy to it.
# ingress_stream keeps the proxy streaming responses (required for the
# streamable-HTTP MCP transport / settings UI flush behaviour).
# Must be set here too — the release pipeline syncs only version/changelog, not
# functional config, so ingress is NOT auto-mirrored from
# homeassistant-addon-dev/config.yaml.
ingress: true
ingress_port: 9583
ingress_stream: true
# Enable access to Supervisor API for auto-discovery
hassio_api: true
# `manager` (not `default`) is required so the Supervisor token grants access
# to /addons/<slug>/logs and /<service>/logs (system service logs). Verified
# via live test — `default` returns 403 for both. See #1116.
hassio_role: manager
# Enable access to Home Assistant API
homeassistant_api: true
# Enable host network mode for local network access
host_network: true
# Use pre-built Docker images
image: "ghcr.io/homeassistant-ai/ha-mcp-addon-{arch}"
# Options for user configuration
# NOTE: enable_yaml_config_editing, enable_filesystem_tools,
# enable_custom_component_integration, and enable_code_mode are
# intentionally NOT exposed here. They are dev-channel-only beta
# features — see docs/beta.md. Do not re-mirror from
# homeassistant-addon-dev/config.yaml without reading that doc first.
options:
backup_hint: "normal"
enable_tool_search: false
enable_tool_security_policies: false
enable_auto_backup: true
auto_backup_throttle_minutes: 0
auto_backup_retain_per_entity: 100
verify_ssl: true
schema:
backup_hint: list(strong|normal|weak|auto)
secret_path: str?
enable_tool_search: bool?
enable_tool_security_policies: bool?
enable_auto_backup: bool?
auto_backup_throttle_minutes: int(0,1440)?
auto_backup_retain_per_entity: int(1,10000)?
verify_ssl: bool?
advanced_debug_logging: bool?
# Add-on exposes HTTP port for MCP communication (fixed internal port)
ports:
9583/tcp: 9583