
MQTT Explorer Home Assistant workflows are most useful when you want to see what the broker is actually receiving from devices and what Home Assistant is subscribing to or publishing.
Start with a known broker connection
Use the same broker endpoint that your Home Assistant MQTT integration uses. If the broker account has restricted ACLs, make sure it can read the topic branches you want to inspect.
What to inspect
Discovery topics
Discovery namespaces can reveal configuration payloads for entities. A missing or malformed discovery message can explain why an entity never appears.
State and availability
Watch sensor state paths and availability topics together. This helps distinguish an offline device from a value that simply stopped changing.
Command topics
Treat command namespaces carefully. Publishing a test value can operate real equipment or trigger automations.
A practical debugging sequence
- Confirm the device publishes.
- Confirm the broker receives the expected topic.
- Compare the payload with what Home Assistant expects.
- Check retained values and availability.
- Only then test a controlled publish if necessary.
Related next steps
For a broader setup view, return to the installation section, check the FAQ, or browse the full guide library.