Prompt
This workflow runs the full VerifiedDR growth loop on your site. The agent measures the authority gap holding your visibility back and reads the owner-scoped signal breakdown before touching anything. It then picks the one partner opportunity most likely to raise your Domain Rating, drafts the outreach angle, and hands you a single command to approve.
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 Authority Growth Loop 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
Analyze
Run
lookup_siteto understand the current authority gap. - 02
Choose
Run
get_growth_planto pick the single best next action. - 03
Inspect
Run
get_truedr { detailed: true }to check the owner-scoped recommendations. - 04
Find partners
Run
find_partner_opportunitiesto find verified partners worth contacting. - 05
Contact
Run
contact_partneronly after you approve the listed target. - 06
Track
Run
monitor_sitesto check whether TrueDR is improving. - 07
Explain
The agent turns the result into a founder or client-ready update.
Commands inside Authority Growth Loop
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. Understand the current authority gaplookup_site { site: "yourwebsite.com" } # 2. Pick the single best next actionget_growth_plan { site: "yourwebsite.com" } # 3. Check the owner-scoped recommendationsget_truedr { site: "yourwebsite.com", detailed: true } # 4. Find verified partners worth contactingfind_partner_opportunities { site: "yourwebsite.com" } # 5. Send only after approving a listed targetcontact_partner { site: "yourwebsite.com", target: "partner-slug", subject, message } # 6. Track whether TrueDR is improvingmonitor_sites { site: "yourwebsite.com" } # 7. Explain progress to a client or founder# the agent writes this from the data above