mesh_wait_ring
Wait up to the requested time for the next inbound ring, returning the moment any new ring is recorded. Use this instead of repeated polling to react to incoming messages without a sleep-then-check loop.
Instructions
Block for up to wait_seconds (max 3600) for the next incoming ring -- the passive counterpart to polling mesh_read_inbox for a new one under rings.pending. Covers every incoming ring, not only ones still awaiting your own answer: open/closed/allowlist policies resolve theirs immediately, 'ask' leaves one pending for mesh_answer_ring -- this call returns the instant any of them is recorded, so check the returned ring's own answer field. Reads the same background recording ring serving already does on every real inbound ring (active from presence.start() onward, independent of this call), so there is nothing new to start watching. An MCP host that backgrounds a slow tool call and delivers the result as a notification (Claude Code does) turns this into real low-latency push, not a client stuck blocking. Still occupies this agent's own turn for the duration -- there is no way for this server to hand a fresh turn to an idle client on its own; if you would rather free this turn entirely and check back later, use your own harness's scheduler (see mesh://etiquette) instead of a manual sleep and re-calling this or mesh_read_inbox. Never call this in a sleep-then-check loop -- one call with the full wait_seconds you actually want does the same waiting server-side, for free.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| wait_seconds | Yes | How long to wait (max 3600). |