Cloud MCPpubsub
pubsub
18 MCP tools on the Hanzo cloud door that call the pubsub API.
The 18 tools tools/list names for pubsub. Each dispatches to an operation in the pubsub API reference.
| Tool | Route | Arguments | Required | Description |
|---|---|---|---|---|
delete_v1_pubsub_jetstream_streams_stream | DELETE /v1/pubsub/jetstream/streams/{stream} | 1 | stream | DeleteStream removes one stream of the caller's org — its retained messages and its consumers with… |
delete_v1_pubsub_jetstream_streams_stream_consumers_name | DELETE /v1/pubsub/jetstream/streams/{stream}/consumers/{name} | 2 | name, stream | DeleteConsumer removes one consumer — its cursor, not the stream's messages — and answers 204 with… |
delete_v1_pubsub_kv_bucket | DELETE /v1/pubsub/kv/{bucket} | 1 | bucket | DeleteBucket removes one bucket of the caller's org — every key and every revision with it — and… |
delete_v1_pubsub_kv_bucket_key | DELETE /v1/pubsub/kv/{bucket}/{key} | 2 | bucket, key | Delete removes one key — a delete marker in the key's history, so watchers see it and Get answers… |
get_v1_pubsub_jetstream_streams | GET /v1/pubsub/jetstream/streams | 0 | — | ListStreams returns the org's streams, sorted by name. |
get_v1_pubsub_jetstream_streams_stream | GET /v1/pubsub/jetstream/streams/{stream} | 1 | stream | GetStream returns one stream of the caller's org — its configuration and its live state (messages,… |
get_v1_pubsub_jetstream_streams_stream_consumers | GET /v1/pubsub/jetstream/streams/{stream}/consumers | 1 | stream | ListConsumers returns one stream's consumers, sorted by name. |
get_v1_pubsub_jetstream_streams_stream_consumers_name | GET /v1/pubsub/jetstream/streams/{stream}/consumers/{name} | 2 | name, stream | GetConsumer returns one consumer of one org stream — its configuration and its cursor: delivered… |
get_v1_pubsub_kv_bucket_key | GET /v1/pubsub/kv/{bucket}/{key} | 2 | bucket, key | Get returns one key's current value and revision. |
get_v1_pubsub_kv_bucket_key_history | GET /v1/pubsub/kv/{bucket}/{key}/history | 2 | bucket, key | History returns one key's retained revisions, oldest first — every put and every delete marker up… |
post_v1_pubsub_jetstream_streams | POST /v1/pubsub/jetstream/streams | 8 | — | CreateStream creates a durable stream capturing the given subjects and returns it. |
post_v1_pubsub_jetstream_streams_stream_consumers | POST /v1/pubsub/jetstream/streams/{stream}/consumers | 7 | — | CreateConsumer creates a durable consumer on one stream and returns it. |
post_v1_pubsub_jetstream_streams_stream_consumers_name_next | POST /v1/pubsub/jetstream/streams/{stream}/consumers/{name}/next | 4 | — | Fetch pulls the next batch from a consumer and acknowledges it — the request/response way to… |
post_v1_pubsub_kv_bucket | POST /v1/pubsub/kv/{bucket} | 4 | — | CreateBucket creates a KV bucket and returns it. |
post_v1_pubsub_publish | POST /v1/pubsub/publish | 3 | — | Publish puts one message on the org's bus. |
post_v1_pubsub_request | POST /v1/pubsub/request | 4 | — | Request sends one request on the org's bus and waits for one reply — the synchronous half of… |
put_v1_pubsub_jetstream_streams_stream | PUT /v1/pubsub/jetstream/streams/{stream} | 8 | — | UpdateStream rewrites a stream's configuration — subjects, limits, discard — and returns the… |
put_v1_pubsub_kv_bucket_key | PUT /v1/pubsub/kv/{bucket}/{key} | 3 | — | Put sets one key to one value and returns the revision the write created. |
Generated from tools/list on https://api.hanzo.ai/v1/mcp — 833 tools captured 2026-08-01, of which 755 are documented here (the operator surface is not published) (this build read the vendored copy; the door was unreachable).
How is this guide?