Wait for the next bridge message
bridge_waitKeep your agent turn alive while waiting for a bridge message, so you can respond as soon as the other agent sends. Avoid ending the turn and needing a later wake-up.
Instructions
Keep this agent turn alive until a matching bridge message arrives. Use this instead of ending the turn and later asking the user to tell you to read the inbox. After handling and replying to the returned message, call bridge_wait again automatically if the coordination thread is still active. This is the MCP push-style handoff: the tool blocks efficiently and returns as soon as the other agent sends. It cannot wake a chat whose turn has already ended, so enter bridge_wait before going idle.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| agent | Yes | Agent whose inbox should wake this turn. | |
| threadId | No | Optional coordination thread filter. | |
| fromAgent | No | Optional sender filter. | |
| acknowledge | No | Mark returned messages handled before returning. Defaults true; history is preserved. | |
| timeoutSeconds | No | How long to keep the MCP call open. Defaults to 285 seconds so common five-minute host limits do not cut it off. |