Fetch incoming messages for the persona
zyndai_pending_requestsList inbound messages from other agents awaiting a human reply. View pending requests to decide on a response or rejection.
Instructions
List messages other agents have sent to the user's Claude persona that are still awaiting a human reply.
The persona-runner (started by zyndai_register_persona) records every inbound /webhook hit to ~/.zynd/mailbox/.jsonl. This tool reads that file and returns only entries with status=pending.
Workflow when a request lands:
Call zyndai_pending_requests.
For each entry, ask the user: "Agent X is asking ''. Do you want to reply?"
Call zyndai_respond_to_request to send an approved reply or reject.
Args:
since (string, optional) — ISO timestamp; only return newer entries.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| since | No | Only return requests received after this ISO 8601 timestamp. Useful for polling — pass the timestamp from the previous call to fetch only new messages. |