get-stream-by-id
Retrieve detailed stream information, including settings, description, and subscriber count, by providing the unique stream ID in Zulip MCP Server.
Instructions
📊 STREAM DETAILS: Get comprehensive information about a stream (channel) when you have its numeric ID. Returns stream settings, description, subscriber count, etc.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
include_subscribers | No | Include subscriber list | |
stream_id | Yes | Unique stream ID to get details for |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"include_subscribers": {
"description": "Include subscriber list",
"type": "boolean"
},
"stream_id": {
"description": "Unique stream ID to get details for",
"type": "number"
}
},
"required": [
"stream_id"
],
"type": "object"
}