Prompt
Build a pitch list from live trust data. The agent ranks sites by TrueDR and keeps sites with checked traffic. It checks each site's evidence before you pitch.
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 Find Sponsors and Partners Worth Pitching do?
This is the sequence the agent follows. It reads data on its own. You approve each send or change.
- 01
Pick a niche
Run
list_categoriesfor the category values discovery accepts. - 02
Rank by TrueDR
Run
find_sites { category, minTrueDr }for trusted websites in that niche. - 03
Demand real traffic
Add
--traffic-validatedto keep websites with confirmed traffic. - 04
Check the evidence
Run
lookup_siteon each shortlisted website before you spend a pitch on it. - 05
Contact through VerifiedDR
Run
find_link_exchangesto see which prospects are verified, reachable exchange matches.
Commands inside Find Sponsors and Partners Worth Pitching
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. The category values discovery acceptslist_categories { } # 2. Trusted websites in your niche, ranked by TrueDRfind_sites { category: "saas", minTrueDr: 40, limit: 25 } # 3. Keep sites with confirmed trafficfind_sites { category: "saas", minTrueDr: 40, trafficValidated: true } # 4. Check one prospect's evidence before pitchinglookup_site { site: "prospect.com" } # 5. Which of them you can already reach as partnersfind_link_exchanges { site: "yourwebsite.com" }