Plugin Name
homebridge-mitsubishi-heatpump
Link To GitHub Repo
https://github.com/ukaratay/homebridge-mitsubishi-heatpump
Plugin Icon (Optional)
No response
The plugin does not offer the same nor less functionality than that of any existing verified plugin.
🟢 Yes
The plugin successfully installs and does not start unless it is configured.
🟢 Yes
The plugin does not require the user to run Homebridge in a TTY or with non-standard startup parameters, even for initial configuration.
🟢 Yes
The plugin does not contain any analytics or calls that enable you to track the user.
🟢 Yes
If the plugin needs to write files to disk (cache, keys, etc.), it stores them inside the Homebridge storage directory.
🟢 Yes
The plugin does not throw unhandled exceptions, the plugin must catch and log its own errors.
🟢 Yes
More Information
homebridge-kumo is verified and targets the same hardware, so I want to be upfront about it rather than have you find it.
It talks to the legacy Kumo Cloud API. In early 2025 Mitsubishi migrated to the Comfort v3 cloud, and homebridge-kumo has not worked against it since. Its issue tracker carries that as #116, #117, #118, #119 and #120, and on 2025-03-31 its maintainer said in #116:
It is but I just don't have the time to try to work on a new API. If HA can solve the problem, I'll see if it is easy to update the Homebridge plugin.
I'm happy to accept pull requests too.
Its last commit and last npm publish are both 2023-12-27, and #111 ("Homebridge v2.0 support") is still open. I am not asking you to un-verify it, and I would rather it were maintained than not. But users on current firmware have no working verified option today.
This plugin speaks Comfort v3 (REST + Socket.IO) and adds function that has no equivalent there:
|
homebridge-kumo |
this plugin |
| Cloud API |
legacy Kumo Cloud (non-functional since 2025) |
Comfort v3 |
| Primary service |
Thermostat |
HeaterCooler with a real IDLE state |
| Fan speed |
not exposed |
5 speeds + fan-auto on a linked Fanv2 |
| Vane / swing |
not exposed |
SwingMode + opt-in Slats tilt angles |
| Updates |
polling |
Socket.IO streaming, polling only as fallback |
| Wireless sensor |
not exposed |
temperature, humidity, battery + low-battery |
| Homebridge 2.x |
open issue #111 |
supported, CI on 1.6-era and 2.x API surface |
This is a hard fork of burtherman/homebridge-mitsubishi-comfort at v1.8.2, which is not verified and is actively maintained by its author. I am not asking for anything that affects it. Attribution, the Apache-2.0 §4(b) statement of changes, and the third-party notices are in NOTICE. The fork diverged on the HomeKit service graph (HeaterCooler rather than Thermostat), which is a breaking change for end users and is documented as such in the README.
Notes against the individual criteria
- Does not start unless configured. With no platform block, the platform is never constructed. With a partial block,
validatePlatformConfig logs one error naming the remedy and the platform stays inert: no accessories, no timers, no network. Verified by installing 2.1.0 from the registry into a clean homebridge 2.2.1 with a second, unrelated platform plugin alongside, and starting it on a bare {"platform": "KumoV3"} block: the process stays up, the other plugin loads, and the bridge publishes. This was a real bug through 2.0.1, fixed in 2.1.0 — the constructor threw, and since Homebridge does not guard a platform constructor that took the whole process down. Please review 2.1.0 or later.
- Unhandled exceptions. The constructor cannot throw, pinned by
test/config-validation.test.ts. Socket.IO handlers and HAP onGet/onSet handlers catch their own errors.
- Disk. The plugin writes no files at all, so the storage-directory rule is moot. Local-control credentials are held in memory only and deliberately never persisted.
- Analytics. The only outbound destinations are
app-prod.kumocloud.com / socket-prod.kumocloud.com and, when localControl is enabled, the user's own units on the LAN. No telemetry, no version ping, no error reporting.
- Node. CI runs the full suite on 20.19, 22 and 24 (
.github/workflows/test.yml). engines.node is ^20.19.0 || ^22.12.0 || >=24.0.0; the floor is require(esm), since the plugin builds to CommonJS and node-fetch v3 is ESM-only.
- Install. No
preinstall / install / postinstall script anywhere in the runtime tree. Published with SLSA provenance through npm Trusted Publishing over OIDC (.github/workflows/publish.yml); there is no NPM_TOKEN in the repository.
- Transports. Declares
supports-hap. It publishes HAP accessories only — vane and swing need FanControl features Homebridge does not yet expose over Matter, and those are the reason the plugin exists.
Plugin Name
homebridge-mitsubishi-heatpump
Link To GitHub Repo
https://github.com/ukaratay/homebridge-mitsubishi-heatpump
Plugin Icon (Optional)
No response
The plugin does not offer the same nor less functionality than that of any existing verified plugin.
🟢 Yes
The plugin successfully installs and does not start unless it is configured.
🟢 Yes
The plugin does not require the user to run Homebridge in a TTY or with non-standard startup parameters, even for initial configuration.
🟢 Yes
The plugin does not contain any analytics or calls that enable you to track the user.
🟢 Yes
If the plugin needs to write files to disk (cache, keys, etc.), it stores them inside the Homebridge storage directory.
🟢 Yes
The plugin does not throw unhandled exceptions, the plugin must catch and log its own errors.
🟢 Yes
More Information
Relationship to
homebridge-kumo(verified)homebridge-kumois verified and targets the same hardware, so I want to be upfront about it rather than have you find it.It talks to the legacy Kumo Cloud API. In early 2025 Mitsubishi migrated to the Comfort v3 cloud, and
homebridge-kumohas not worked against it since. Its issue tracker carries that as #116, #117, #118, #119 and #120, and on 2025-03-31 its maintainer said in #116:Its last commit and last npm publish are both 2023-12-27, and #111 ("Homebridge v2.0 support") is still open. I am not asking you to un-verify it, and I would rather it were maintained than not. But users on current firmware have no working verified option today.
This plugin speaks Comfort v3 (REST + Socket.IO) and adds function that has no equivalent there:
ThermostatHeaterCoolerwith a real IDLE stateFanv2SwingMode+ opt-inSlatstilt anglesRelationship to
homebridge-mitsubishi-comfort(not verified)This is a hard fork of
burtherman/homebridge-mitsubishi-comfortat v1.8.2, which is not verified and is actively maintained by its author. I am not asking for anything that affects it. Attribution, the Apache-2.0 §4(b) statement of changes, and the third-party notices are in NOTICE. The fork diverged on the HomeKit service graph (HeaterCoolerrather thanThermostat), which is a breaking change for end users and is documented as such in the README.Notes against the individual criteria
validatePlatformConfiglogs one error naming the remedy and the platform stays inert: no accessories, no timers, no network. Verified by installing 2.1.0 from the registry into a clean homebridge 2.2.1 with a second, unrelated platform plugin alongside, and starting it on a bare{"platform": "KumoV3"}block: the process stays up, the other plugin loads, and the bridge publishes. This was a real bug through 2.0.1, fixed in 2.1.0 — the constructor threw, and since Homebridge does not guard a platform constructor that took the whole process down. Please review 2.1.0 or later.test/config-validation.test.ts. Socket.IO handlers and HAPonGet/onSethandlers catch their own errors.app-prod.kumocloud.com/socket-prod.kumocloud.comand, whenlocalControlis enabled, the user's own units on the LAN. No telemetry, no version ping, no error reporting..github/workflows/test.yml).engines.nodeis^20.19.0 || ^22.12.0 || >=24.0.0; the floor isrequire(esm), since the plugin builds to CommonJS andnode-fetchv3 is ESM-only.preinstall/install/postinstallscript anywhere in the runtime tree. Published with SLSA provenance through npm Trusted Publishing over OIDC (.github/workflows/publish.yml); there is noNPM_TOKENin the repository.supports-hap. It publishes HAP accessories only — vane and swing need FanControl features Homebridge does not yet expose over Matter, and those are the reason the plugin exists.