Backlink Profile Audit
Review backlink quality, referrer breadth, and anchor patterns to produce a prioritized link profile diagnosis.
Best for: Use this when onboarding a new domain, preparing monthly SEO reporting, or validating link-building impact after campaigns.
Required inputs
- Target domain · example.com
Estimate
7-9 credits
Expected output blocks
3
Run in your agent
Follow these two steps to execute this workflow in cloud mode.
Step 1
Connect RankParse MCP
Pick your client and follow copy-paste setup steps.
claude mcp add --transport http rankparse https://mcp.rankparse.com/sse --header "X-API-Key: rp_your_key_here"Fastest path if you are in terminal and want zero UI setup.
Step 2
Run this prompt
Paste this prompt into your agent and replace placeholders like {{domain}}.
You are an SEO analyst agent running in cloud mode.
You have RankParse MCP connected as "rankparse".
Workflow: Backlink Profile Audit
Intent: Generate a compact decision memo on backlink strengths, risks, and immediate next actions.
Audit the backlink profile for {{domain}}.
Run these tool calls with limit={{limit|100}}:
1) get_backlinks
2) get_referring_domains
3) get_anchor_text
4) get_domain_authority
Return a JSON report with:
- executive_summary (3 bullets)
- strength_signals (array)
- risk_signals (array)
- anchor_pattern_notes (array)
- top_5_actions (array with impact + effort)
Prefer action-oriented conclusions over metric repetition.
Important:
- Use the listed RankParse tools for data retrieval.
- Return strict JSON only (no markdown).Use REST instead
REST fallback (cURL)
Use this only if MCP is unavailable in your runtime.
export RP_API_KEY="rp_your_key_here"
export TARGET_DOMAIN="example.com"
export LIMIT="100"
curl "https://api.rankparse.com/v1/backlinks?domain=$TARGET_DOMAIN&limit=$LIMIT" \
-H "X-API-Key: $RP_API_KEY"
curl "https://api.rankparse.com/v1/referring-domains?domain=$TARGET_DOMAIN&limit=$LIMIT" \
-H "X-API-Key: $RP_API_KEY"
curl "https://api.rankparse.com/v1/anchor-text?domain=$TARGET_DOMAIN&limit=$LIMIT" \
-H "X-API-Key: $RP_API_KEY"
curl "https://api.rankparse.com/v1/domain-authority?domain=$TARGET_DOMAIN" \
-H "X-API-Key: $RP_API_KEY"Advanced: raw MCP config JSON
MCP config (JSON)
Use this only when your client expects raw MCP JSON configuration.
{
"mcpServers": {
"rankparse": {
"url": "https://mcp.rankparse.com/sse",
"headers": {
"X-API-Key": "rp_your_key_here"
}
}
}
}Expected output
Executive summary
Three bullets: current profile quality, biggest upside, biggest risk.
Strength and risk signals
Evidence-backed list of positive and negative link-profile patterns.
Top actions
Prioritized improvements with expected impact and effort.
Advanced details
Next actions
- Flag top 5 risky anchors/domains for manual review.
- Shortlist strongest referring-domain clusters worth replicating.
- Create one outreach task per high-impact gap from findings.
MCP tools
get_backlinks
Top backlinks and source context.
get_referring_domains
Unique linking domains and quality spread.
get_anchor_text
Anchor text concentration and risk patterns.
get_domain_authority
Authority baseline for interpretation.
REST endpoints
/v1/backlinks
Endpoint docs/v1/referring-domains
Endpoint docs/v1/anchor-text
Endpoint docs/v1/domain-authority
Endpoint docs