bridge_receive
Read messages from a named channel. Use since_id to retrieve only new messages, enabling efficient polling for real-time communication.
Instructions
Read messages from a named channel. Pass since_id to only get messages newer than a known message. Poll this every few seconds to simulate real-time communication.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Max messages to return (default: 20) | |
| channel | Yes | Channel to read from | |
| since_id | No | Only return messages after this message ID (exclusive). Get from a previous receive. |