Node-RED can connect to RabbitMQ using both AMQP and MQTT protocols, enabling visual flow-based programming for industrial IoT and messaging workflows.
Node-RED has native MQTT nodes that connect directly to RabbitMQ's MQTT plugin:
The node-red-contrib-amqp package provides AMQP 0-9-1 nodes:
// MQTT broker config for RabbitMQ
{
"broker": "rabbitmq.example.com",
"port": 1883,
"clientid": "nodered-client"
}