Cloud MCPmq
mq
15 MCP tools on the Hanzo cloud door that call the mq API.
The 15 tools tools/list names for mq. Each dispatches to an operation in the mq API reference.
| Tool | Route | Arguments | Description |
|---|---|---|---|
delete_v1_mq_streams_name | DELETE /v1/mq/streams/{name} | 1 | Removes a stream with all its messages and consumers. |
delete_v1_mq_streams_name_messages_seq | DELETE /v1/mq/streams/{name}/messages/{seq} | 2 | Erases one message by sequence; the sequence gap remains. |
delete_v1_mq_streams_stream_consumers_name | DELETE /v1/mq/streams/{stream}/consumers/{name} | 2 | Removes a consumer and its delivery state; unacknowledged messages stay in the stream. |
get_v1_mq_health | GET /v1/mq/health | 0 | Reports whether the message plane behind this surface answers. |
get_v1_mq_info | GET /v1/mq/info | 0 | Returns the broker's identity and the org's stream count. |
get_v1_mq_streams | GET /v1/mq/streams | 2 | Returns the org's streams, name-ordered, with their live state. |
get_v1_mq_streams_name | GET /v1/mq/streams/{name} | 1 | Returns one stream's configuration and live state. |
get_v1_mq_streams_name_messages | GET /v1/mq/streams/{name}/messages | 5 | Reads stored messages without a consumer: by sequence, by newest on a subject, or walking a subject |
get_v1_mq_streams_stream_consumers | GET /v1/mq/streams/{stream}/consumers | 3 | Returns a stream's consumers, name-ordered, with delivery state. |
get_v1_mq_streams_stream_consumers_name | GET /v1/mq/streams/{stream}/consumers/{name} | 2 | Returns one consumer's configuration and delivery state. |
post_v1_mq_streams | POST /v1/mq/streams | 9 | Creates a durable stream in the org's namespace and returns it. |
post_v1_mq_streams_name_purge | POST /v1/mq/streams/{name}/purge | 3 | Removes messages from a stream, leaving its consumers in place. |
post_v1_mq_streams_stream_consumers | POST /v1/mq/streams/{stream}/consumers | 12 | Creates a durable pull consumer on a stream and returns it. |
post_v1_mq_streams_stream_consumers_name_next | POST /v1/mq/streams/{stream}/consumers/{name}/next | 5 | Pulls the consumer's next batch. Delivered messages are acknowledged on delivery — the broker will n |
put_v1_mq_streams_name | PUT /v1/mq/streams/{name} | 9 | Reconfigures an existing stream; the path names the stream, and the immutable fields (storage, reten |
Generated from tools/list on https://api.hanzo.ai/v1/mcp — 834 tools captured 2026-08-01 (this build read the vendored copy; the door was unreachable).
How is this guide?