RabbitMQ
Message Queue

RabbitMQ Connector

Connect to RabbitMQ Management API to list queues, publish messages, and monitor broker health.

$pip install "toolsconnector[rabbitmq]"
21
Actions
Message Queue
Category
Free
Apache 2.0

All 21 Actions

Action Description Parameters Returns
create_binding ⚠Create a binding between an exchange and a queuevhost, exchange, queue  [routing_key, arguments]bool
create_exchange ⚠Create a new exchangevhost, name, typebool
create_queue ⚠Create a new queuevhost, queue_name  [durable]bool
delete_exchange ⚠Delete an exchangevhost, namebool
delete_queue ⚠Delete a queuevhost, queue_namebool
get_exchangeGet details for a specific exchangevhost, nameRabbitExchange
get_messagesGet messages from a queuevhost, queue_name  [count, ack_mode]list
get_node_infoGet information about a broker nodelist
get_overviewGet broker overview and cluster statisticsRabbitOverview
get_queueGet details for a specific queuevhost, queue_nameRabbitQueue
get_queue_bindingsGet bindings for a specific queuevhost, queue_namelist
health_checkCheck broker healthdict
list_bindingsList bindings in a virtual hostvhostlist
list_channelsList active channels in the brokerPaginatedList[RabbitChannel]
list_connectionsList active connections to the brokerPaginatedList[RabbitConnection]
list_consumersList consumers[vhost]list
list_exchangesList exchanges in the RabbitMQ broker[vhost]PaginatedList[RabbitExchange]
list_queuesList queues in the RabbitMQ broker[vhost]PaginatedList[RabbitQueue]
list_vhostsList virtual hostslist
publish_messagePublish a message to an exchangevhost, exchange, routing_key, payloadbool
purge_queue ⚠Purge all messages from a queuevhost, queue_namebool
Open Interactive Docs & Playground →

Full schema explorer, code generation, and live API testing