Prompt
This workflow clears the exchange inbox without answering for you. The agent lists every waiting proposal, reads each thread, checks the trust evidence of the other website, and drafts each reply in your voice. Replying mails a real person as you, so nothing sends until you approve the exact words.
Paste this into Claude, Codex, Cursor, ChatGPT, or another coding agent. The website, the expected output, and the approval boundary are already written in. First run? Complete the one-time setup; your agent can handle that too.
What does Clear the Exchange Inbox do?
This is the sequence the agent follows. It reads data on its own. You approve each send or change.
- 01
List what waits
Run
inbox_listfor open conversations and the unread count. - 02
Read the thread
Run
inbox_threadfor the messages, the website on each side, and any deal attached. - 03
Check who is asking
Run
lookup_siteon the other website so the reply is based on real trust data. - 04
Draft the reply
The agent writes the reply and shows it to you. You approve the message before it sends.
- 05
Send and close
Run
inbox_replyafter you approve the words, then--readto clear the thread.
Commands inside Clear the Exchange Inbox
The exact MCP tool calls behind the prompt. Your agent runs these against the verifieddr server; the ones that send anything still stop for your approval.
# 1. Conversations waiting on youinbox_list { limit: 20 } # 2. Read one thread end to endinbox_thread { id: "thread-id" } # 3. Check who is asking before you agreelookup_site { site: "partner.com" } # 4. Approve the words, then replyinbox_reply { id: "thread-id", body: "your approved reply" } # 5. Clear it from the unread pileinbox_mark_read { id: "thread-id" }