get-topics-in-stream
Retrieve recent conversation threads in a specific Zulip stream using the stream ID. Quickly browse active discussions to stay informed on relevant topics.
Instructions
💬 STREAM TOPICS: Get all recent topics (conversation threads) in a specific stream (channel). Use this to browse what's being discussed in a stream.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
stream_id | Yes | Unique stream ID to get topics for |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"stream_id": {
"description": "Unique stream ID to get topics for",
"type": "number"
}
},
"required": [
"stream_id"
],
"type": "object"
}