Prompt
This workflow turns partner discovery into one approved send. The agent scans verified partners in your category, explains why the best match fits your site, and previews the exact target, subject, and message with a dry run. Nothing sends until you approve the copy.
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 Propose a Verified Link Exchange do?
This is the sequence the agent follows. It reads data on its own. You approve each send or change.
- 01
Find exchange matches
Run
find_link_exchangesto surface verified websites open to a relevant editorial exchange. - 02
Preview draft
Run
propose_link_exchange { dryRun: true }to preview the exact target and one-link-each proposal. - 03
Approve and send
Approve the target, subject, and message. Then run
propose_link_exchange.
Commands inside Propose a Verified Link Exchange
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. Find verified partners worth contactingfind_link_exchanges { site: "yourwebsite.com" } # 2. Preview a single target without sendingpropose_link_exchange { site: "yourwebsite.com", target: "match-slug", dryRun: true } # 3. Approve the target, then send the draftpropose_link_exchange { site: "yourwebsite.com", target: "match-slug", destinationUrl: "https://yourwebsite.com/guide", subject, message }