Skip to main content
Glama

HA Control

Five generic MCP tools for deep Home Assistant administration, plus a native Home Assistant LLM API and a reusable agent skill. Original Python code; official MCP SDK 2.0.0 runs only in the companion app.

Tool

Purpose

ha_discover

Search live capabilities; load one operation's schema

ha_request

REST, WebSocket, Supervisor and configured HTTP profiles; sequential batches

ha_files

Read, preview, hash-check, patch, replace, move, delete and restore configuration

ha_events

Bounded event subscriptions with explicit connection gaps

ha_result

Page stored results and select fields/JSON pointers

The compact tools/list response is 4352 bytes, independent of installed integrations. Service names, entities, devices, config flows and dashboard identifiers are data, not separate tools.

Install the companion app

Requires Home Assistant OS or Supervised, Core 2026.8.1 or newer, amd64. The current release publishes only the architecture tested on hardware.

  1. Open Settings → Apps → App store → Repositories (called Add-ons on older versions).

  2. Add https://github.com/Yiivgeny/ha-control.

  3. Install HA Control MCP. Supervisor downloads the prebuilt image from ghcr.io/yiivgeny/ha-control-mcp; no local build or SSH is needed.

  4. Set mcp_token to a random secret of at least 32 characters and configure any optional HTTP profiles. Start the app and enable startup/watchdog as desired.

Only the external MCP token and optional HTTP-profile credentials are user settings. The app obtains HA/Supervisor authorization from SUPERVISOR_TOKEN automatically. Internal REST and WebSocket traffic uses Supervisor proxies. A private bridge identity is generated in the app's data directory and passed to Core through authenticated Supervisor Discovery.

Install the integration through HACS

  1. In HACS → Custom repositories, add https://github.com/Yiivgeny/ha-control with category Integration.

  2. Download HA Control and restart Home Assistant.

  3. The running companion is paired automatically. If needed, select Settings → Devices & services → Add integration → HA Control; there are no address/token fields to fill in.

The native LLM API is HA Control (administration), ID ha_control. Select it in a compatible conversation integration. It requires an authenticated administrator context; contexts without a user ID cannot use administrative tools.

This is a HACS custom repository, not a claim of inclusion in HACS's default catalog.

Connect Hermes or another MCP client

The endpoint is http://<your-ha-host>:8213/mcp, using Streamable HTTP and an Authorization: Bearer ... header. Never expose the Supervisor token to external clients.

Hermes configuration example:

mcp_servers:
  ha_control:
    url: http://<your-ha-host>:8213/mcp
    headers:
      Authorization: "Bearer ${HA_CONTROL_MCP_TOKEN}"
    timeout: 150
    connect_timeout: 30

Store HA_CONTROL_MCP_TOKEN in Hermes's private environment file. Copy skills/ha-control into the client's skill directory. For multiple homes, add local routing instructions to the installed skill; discover actual entities and profiles instead of copying identifiers from another home.

HTTP profiles

Profiles fix the upstream origin and inject credentials. For an app-hosted InfluxDB, use its Supervisor internal hostname, such as http://<repository-id>-influxdb:8086. Discover the actual hostname in Supervisor; the repository ID depends on the InfluxDB app source.

http_profiles:
  - name: analytics
    url: http://<influx-app-hostname>:8086
    username: <database-user>
    password: <database-password>
    database: <database-name>
    description: InfluxDB historical analytics

Then use ha_request with transport http, that profile, path /query and InfluxQL parameters. Profiles are generic; no Influx-specific MCP tool is registered. Database credentials remain separate from HA authorization.

Behavior and boundaries

Responses default to at most 50 items and 16 KiB; larger results have a 15-minute handle. Batches contain at most 20 requests and are not transactions. Uncertain mutation outcomes are never automatically repeated. Events report overflow and reconnect gaps.

Prefer native APIs for managed configuration. File edits default to a diff, require the original SHA256, and retain previous revisions. Direct .storage edits require an acknowledged Core stop through this app. Supervisor and mounted files remain reachable while Core is stopped. Backups use Supervisor APIs.

This is an administrative service for trusted clients. Mounted configuration and app management grant broad control. There is no public shell, Docker exec or Python execution endpoint. The default local HTTP endpoint does not encrypt traffic; use TLS termination for untrusted networks.

Development and releases

python -m pip install -r addon/requirements.lock
PYTHONPATH=addon python -m unittest discover -s tests -q
python scripts/release.py

addon/Dockerfile downloads locked wheels in a build stage and installs them offline into the runtime image. A v<version> Git tag runs the tests, builds/publishes the GHCR image, and attaches ha_control.zip to a GitHub release for HACS. Version tags must match the integration and app manifests. Workflows pin actions to commit SHAs.

Architecture · Validation · Agent skill · Changelog

Update and rollback

Update the integration in HACS and the companion in the app store, then restart Core when HACS requests it. Back up both before updating. The app backup contains its private bridge identity and file revisions. Restoring a different identity is reconciled through Supervisor Discovery.

For version rollback, reinstall the previous HACS release and restore the previous companion backup/image. During migration from the original local app, stop it before starting the repository app because both use port 8213. Copy the external MCP token and HTTP profiles into the new app; its internal identity is paired automatically. Preserve the old app backup until the new installation is verified.

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.

No tool schema history has been recorded yet.

Maintenance

ActivityMaintained
ResponsivenessNo issues

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Connectors

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/Yiivgeny/ha-control'

If you have feedback or need assistance with the MCP directory API, please join our Discord server