If you have a Honeywell RedLINK thermostat tied to Total Connect Comfort (TCC), this project makes it show up in Apple Home without replacing hardware. TCC-Matter Bridge is a service that talks to the Honeywell TCC cloud, exposes your thermostat as a Matter device, and lets the Apple Home app do the rest.

TCC-Matter Bridge sits between Honeywell’s TCC cloud and your Apple Home hub. The Go backend manages the TCC session and exposes a local Web UI, while a Matter.js service presents a Matter thermostat device to HomeKit.
If you just want it running:
services:
tcc-bridge:
image: stephens/tcc-bridge:latest
container_name: tcc-bridge
restart: unless-stopped
command: ["/app/bin/tcc-bridge", "-debug"]
# Host networking required for Matter/HomeKit mDNS discovery
network_mode: host
volumes:
- ./data:/app/data
environment:
- TZ=${TZ:-America/Los_Angeles}
healthcheck:
test: ["CMD", "wget", "--no-verbose", "--tries=1", "--spider", "http://localhost:8080/api/status"]
interval: 30s
timeout: 3s
start_period: 10s
retries: 3
docker compose up -d
Then:
http://localhost:8080network_mode: host is required so mDNS can find the bridge on your LAN.If you want to dig deeper, the project is open source and includes full docs and build steps in the repo.