forked from homeassistant-ai/ha-mcp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.py
More file actions
254 lines (203 loc) · 9.73 KB
/
Copy pathconfig.py
File metadata and controls
254 lines (203 loc) · 9.73 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
"""
Configuration management for Home Assistant MCP Server.
"""
import os
# Load environment variables from .env file with HAMCP_ENV_FILE support
# Use absolute path to ensure .env is found regardless of cwd
from pathlib import Path
from dotenv import load_dotenv
from pydantic import Field, field_validator
from pydantic_settings import BaseSettings, SettingsConfigDict
from ha_mcp._version import get_version
_PACKAGE_VERSION = get_version()
project_root = Path(__file__).parent.parent.parent
# Demo environment token - use HOMEASSISTANT_TOKEN="demo" to connect to the public demo
# Demo server: https://ha-mcp-demo-server.qc-h.net (login: mcp/mcp, resets weekly)
DEMO_TOKEN = "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiIxOTE5ZTZlMTVkYjI0Mzk2YTQ4YjFiZTI1MDM1YmU2YSIsImlhdCI6MTc1NzI4OTc5NiwiZXhwIjoyMDcyNjQ5Nzk2fQ.Yp9SSAjm2gvl9Xcu96FFxS8SapHxWAVzaI0E3cD9xac"
# OAuth mode sentinel values — when these are present, HA credentials come from OAuth tokens
OAUTH_MODE_URL = "http://oauth-mode"
OAUTH_MODE_TOKEN = "oauth-mode-token"
# Support for different environment files via HAMCP_ENV_FILE
env_file = os.getenv("HAMCP_ENV_FILE", ".env")
env_path = project_root / env_file
# Load the specified environment file (silently, since env vars may come from other sources)
if env_path.exists():
load_dotenv(env_path)
else:
# Fallback to default .env
default_env_path = project_root / ".env"
if default_env_path.exists():
load_dotenv(default_env_path)
class Settings(BaseSettings):
"""Application settings loaded from environment variables."""
# Home Assistant connection
# In OAuth mode, these are optional and provided per-request
homeassistant_url: str = Field(default=OAUTH_MODE_URL, alias="HOMEASSISTANT_URL")
homeassistant_token: str = Field(
default=OAUTH_MODE_TOKEN, alias="HOMEASSISTANT_TOKEN"
)
# Server configuration
timeout: int = Field(30, alias="HA_TIMEOUT")
max_retries: int = Field(3, alias="HA_MAX_RETRIES")
# False = skip TLS verification (self-signed / hostname mismatch). Trusted networks only.
verify_ssl: bool = Field(True, alias="HA_VERIFY_SSL")
# Tool configuration
fuzzy_threshold: int = Field(60, alias="FUZZY_THRESHOLD")
entity_search_limit: int = Field(20, alias="ENTITY_SEARCH_LIMIT")
# Backup tool configuration
backup_hint: str = Field("normal", alias="BACKUP_HINT")
# WebSocket configuration (essential for async operations)
enable_websocket: bool = Field(True, alias="ENABLE_WEBSOCKET")
# Development/Debug configuration
debug: bool = Field(False, alias="DEBUG")
log_level: str = Field("INFO", alias="LOG_LEVEL")
# MCP Server configuration
mcp_server_name: str = Field("ha-mcp", alias="MCP_SERVER_NAME")
mcp_server_version: str = Field(
default=_PACKAGE_VERSION, alias="MCP_SERVER_VERSION"
)
# Environment configuration
environment: str = Field("development", alias="ENVIRONMENT")
# Tool filtering - comma-separated list of module names to enable
# Special values: "all" (default), "automation" (automation-related tools only)
# Examples: "tools_config_automations,tools_config_scripts,tools_traces"
enabled_tool_modules: str = Field("all", alias="ENABLED_TOOL_MODULES")
# Dashboard partial update tools (python_transform, find_card)
# These are token-efficient alternatives to full config replacement.
# Disable when using clients with programmatic tool use (future).
enable_dashboard_partial_tools: bool = Field(
True, alias="ENABLE_DASHBOARD_PARTIAL_TOOLS"
)
# Tool search transform — replaces the full tool catalog with a unified
# BM25 search tool and categorized call proxies (read/write/delete).
# Dramatically reduces idle context token usage for LLMs.
enable_tool_search: bool = Field(False, alias="ENABLE_TOOL_SEARCH")
# Managed YAML config editing — allows ha_config_set_yaml to add,
# replace, or remove top-level keys in configuration.yaml and package
# files. Disabled by default; only for YAML-only features with no UI/API path.
enable_yaml_config_editing: bool = Field(False, alias="ENABLE_YAML_CONFIG_EDITING")
# Seed values for tool visibility (comma-separated tool names).
# Used as initial config when no tool_config.json exists.
# The web settings UI (/settings) is the primary interface for managing these.
disabled_tools: str = Field("", alias="DISABLED_TOOLS")
pinned_tools: str = Field("", alias="PINNED_TOOLS")
# Max results returned by ha_search_tools. Pydantic enforces the
# 2-10 range; the addon-dev schema also uses ``int(2,10)?`` so the
# supervisor UI rejects out-of-range values before they reach env vars.
tool_search_max_results: int = Field(5, ge=2, le=10, alias="TOOL_SEARCH_MAX_RESULTS")
# Code Mode — sandboxed Python execution via pydantic-monty.
# Provides an "escape hatch" tool (ha_manage_custom_tool) that lets LLMs write
# custom one-off Python code when no existing tool covers the request.
# Disabled by default due to the inherent risk of LLM-generated code.
# Range bounds reject zero/negative values that would silently break the
# tool and clamp upper bounds at sane safety margins (5 min wall-clock,
# 256 MB memory, 10k recursion, 10k API/tool calls per execution).
enable_code_mode: bool = Field(False, alias="ENABLE_CODE_MODE")
code_mode_max_duration: float = Field(
30.0, ge=1.0, le=300.0, alias="CODE_MODE_MAX_DURATION"
)
code_mode_max_memory: int = Field(
10_485_760, ge=1_048_576, le=268_435_456, alias="CODE_MODE_MAX_MEMORY"
) # 10 MB default; 1 MB floor, 256 MB ceiling
code_mode_max_recursion: int = Field(
100, ge=1, le=10_000, alias="CODE_MODE_MAX_RECURSION"
)
code_mode_max_invocations: int = Field(
100, ge=1, le=10_000, alias="CODE_MODE_MAX_INVOCATIONS"
)
# Path to a JSON file for persisting saved custom tools across restarts.
# Empty string disables persistence (saved tools live in process memory
# and are lost on restart). The addon sets this to /data/saved_tools.json
# by default so saved tools survive addon restarts (the /data directory
# is mapped per-addon by Supervisor and is preserved across addon
# updates).
code_mode_saved_tools_path: str = Field(
"", alias="CODE_MODE_SAVED_TOOLS_PATH"
)
@property
def env_file_name(self) -> str:
"""Get the current environment file name."""
return os.getenv("HAMCP_ENV_FILE", ".env")
@field_validator("homeassistant_url")
@classmethod
def validate_homeassistant_url(cls, v: str) -> str:
"""Ensure URL is properly formatted."""
# Allow OAuth mode placeholder
if v == OAUTH_MODE_URL:
return v
if not v.startswith(("http://", "https://")):
raise ValueError("Home Assistant URL must start with http:// or https://")
return v.rstrip("/") # Remove trailing slash
@field_validator("homeassistant_token")
@classmethod
def validate_homeassistant_token(cls, v: str) -> str:
"""Ensure token is not empty. Use 'demo' for public demo environment."""
# Allow OAuth mode placeholder
if v == OAUTH_MODE_TOKEN:
return v
if not v or v == "your_long_lived_access_token_here":
raise ValueError("Home Assistant token must be provided")
# Replace "demo" with actual demo token for easy onboarding
if v.lower() == "demo":
return DEMO_TOKEN
return v
@field_validator("fuzzy_threshold")
@classmethod
def validate_fuzzy_threshold(cls, v: int) -> int:
"""Ensure fuzzy threshold is reasonable."""
if not 0 <= v <= 100:
raise ValueError("Fuzzy threshold must be between 0 and 100")
return v
@field_validator("log_level")
@classmethod
def validate_log_level(cls, v: str) -> str:
"""Ensure log level is valid."""
valid_levels = ["DEBUG", "INFO", "WARNING", "ERROR", "CRITICAL"]
if v.upper() not in valid_levels:
raise ValueError(f"Log level must be one of {valid_levels}")
return v.upper()
@field_validator("backup_hint")
@classmethod
def validate_backup_hint(cls, v: str) -> str:
"""Ensure backup hint is valid."""
valid_hints = ["strong", "normal", "weak", "auto"]
if v.lower() not in valid_hints:
raise ValueError(f"Backup hint must be one of {valid_hints}")
return v.lower()
model_config = SettingsConfigDict(
env_file=".env", env_file_encoding="utf-8", case_sensitive=False, extra="allow"
)
def get_settings() -> Settings:
"""Get application settings."""
return Settings() # type: ignore[call-arg]
def validate_settings() -> tuple[bool, str | None]:
"""
Validate settings and return (is_valid, error_message).
Returns:
tuple: (True, None) if valid, (False, error_message) if invalid
"""
try:
settings = get_settings()
# Additional validation
if not settings.homeassistant_url:
return False, "Home Assistant URL is required"
if not settings.homeassistant_token:
return False, "Home Assistant token is required"
return True, None
except Exception as e:
return False, str(e)
# Global settings instance
_settings: Settings | None = None
def get_global_settings() -> Settings:
"""Get global settings instance (singleton pattern)."""
global _settings
if _settings is None:
_settings = get_settings()
return _settings
def _reset_global_settings() -> None:
"""Drop the cached settings singleton.
Test-only seam so suites that mutate ``HA_*`` env vars can force a
re-read without reaching into module-private state.
"""
global _settings
_settings = None