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 Land a Verified Partner do?
This is the sequence the agent works through. Read-only steps run on their own; anything that sends or changes something stops and waits for you.
- 01
Find partners
Run
find_partner_opportunitiesto surface verified partners worth contacting. - 02
Preview draft
Run
contact_partner { dryRun: true }to preview the exact target and draft before anything sends. - 03
Draft and send
Run
contact_partneronly after you approve the target and copy.
Commands inside Land a Verified Partner
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_partner_opportunities { site: "yourwebsite.com" } # 2. Preview a single target without sendingcontact_partner { site: "yourwebsite.com", target: "partner-slug", dryRun: true } # 3. Draft and send only after you approve the targetcontact_partner { site: "yourwebsite.com", target: "partner-slug", subject, message }