What does DR Growth Loop do?
This workflow runs the full VerifiedDR growth loop on your site. The agent measures the visibility gap holding you back and reads the owner-scoped signal breakdown before touching anything. It then works the generated growth plan: the ranked task list VerifiedDR builds for your site, one task at a time, recording each one it finishes so the next run picks up where you left off.
This is the sequence the agent follows. It reads data on its own. You approve each send or change.
- 01
Analyze
Run
lookup_siteto understand the current visibility 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
Read the plan
Run
get_growth_planfor the generated plan: ranked tasks with impact, reason, and next step. - 05
Refresh the plan
Run
run_growth_planwhen the plan is old. Finished tasks stay closed. - 06
Work one task
Execute the top task, then call
update_growth_taskwith status done to record it. - 07
Track
Run
monitor_sitesto check whether TrueDR is improving.
Commands inside DR 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 visibility 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. The generated growth plan, ranked by impactget_growth_plan { site: "yourwebsite.com" } # 5. Regenerate the plan when it is stale (paid)run_growth_plan { site: "yourwebsite.com" } # 6. Record a task once you finished itupdate_growth_task { site: "yourwebsite.com", id: "task-id", status: "done" } # 7. Track whether TrueDR is improvingmonitor_sites { site: "yourwebsite.com" }