Wait for the user's reply
bridge_awaitWait for and retrieve a chat reply after sending a message, returning the response text, timeout, or stopped status. Use this to get the answer without resending.
Instructions
Blocks on this conversation's chat thread for a single long-poll window and returns JSON with status 'message' plus the reply text, 'timeout', or 'stopped'. Use it when you already posted with bridge_send and only need the answer; to post and wait together, prefer bridge_send_and_await. Replies are consumed as they are delivered, so each message comes back exactly once and a later call will not see it again. A 'timeout' is normal rather than an error — the window elapsed with no reply, and you keep waiting by calling again. 'stopped' means the user ended remote chat mode, so stop calling bridge_* tools until a new bridge_start.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| session | Yes | Session handle returned by bridge_start for THIS conversation. Routes the call to the right chat thread and keeps concurrent conversations — even two in the same workspace — from crossing over. | |
| maxBlockMs | No | How long to wait for a reply before giving up and returning status 'timeout', in milliseconds. Defaults to 50000 and is capped at 55000 to stay inside the MCP call timeout — wait longer by calling again, not by raising this. |