Prompt
This workflow tears down any competitor with live authority data. The agent looks up their DR, TrueDR, and trust evidence, compares it against your site, and maps the referring domains that power their score. It surfaces the keywords they rank 4-30 for that you could contest, then recommends the single move most likely to close the gap. Competitor lookups use public data, so this works on any website.
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 Competitor Authority Teardown 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
Look them up
Run
lookup_sitefor the competitor's DR, TrueDR, trust score, and evidence. - 02
Measure your side
Run
lookup_siteon your site so both sides use the same live data. - 03
Map their links
Run
get_trust_mapto see which referring domains power their authority and which trusted sources skip you. - 04
Contest keywords
Run
keyword_suggestionson the competitor to find terms they rank 4-30 for that you can contest. - 05
Close the gap
Run
find_partner_opportunitiesand pick the one partner or directory move most likely to close the gap.
Commands inside Competitor Authority Teardown
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. Their DR, TrueDR, and trust evidencelookup_site { site: "competitor.com" } # 2. Your side, same live datalookup_site { site: "yourwebsite.com" } # 3. Which referring domains power their authorityget_trust_map { site: "competitor.com" } # 4. Keywords they rank 4-30 for (contestable)keyword_suggestions { domain: "competitor.com" } # 5. One move to close the gapfind_partner_opportunities { site: "yourwebsite.com" }