All workflows
Competitor Gap

Outreach Prospect Pack

Build a campaign-ready outreach pack with prioritized prospects, supporting evidence, and suggested messaging angles.

Best for: Use this when handing off opportunities to outreach teams, freelancers, or founders running direct campaigns.

Required inputs

  • Your domain · yourdomain.com
  • Competitor domain · competitor.com

Estimate

8-12 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.

1
Runclaude mcp add --transport http rankparse https://mcp.rankparse.com/sse --header "X-API-Key: rp_your_key_here"
2
UseStart a new Claude Code session and ask for backlink/authority analysis.

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: Outreach Prospect Pack
Intent: Move from raw link-gap data to execution-ready outreach tasks in one pass.

Create an outreach prospect pack for {{your_domain}} using {{competitor_domain}} as reference.

Use:
1) get_link_intersect(domain_a={{competitor_domain}}, domain_b={{your_domain}})
2) get_backlinks(domain={{competitor_domain}}, limit=120, sort="importance")
3) get_top_pages(domain={{competitor_domain}}, limit=20)

Return:
- prioritized_prospects (domain, reason, pitch_angle)
- evidence_links (source URL + target URL)
- outreach_copy_starters (short templates)
- campaign_batching (high/medium/long-shot)
- disqualification_rules

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 YOUR_DOMAIN="yourdomain.com"
export COMPETITOR_DOMAIN="competitor.com"

curl "https://api.rankparse.com/v1/link-intersect?domain_a=$COMPETITOR_DOMAIN&domain_b=$YOUR_DOMAIN" \
  -H "X-API-Key: $RP_API_KEY"
curl "https://api.rankparse.com/v1/backlinks?domain=$COMPETITOR_DOMAIN&limit=120&sort=importance" \
  -H "X-API-Key: $RP_API_KEY"
curl "https://api.rankparse.com/v1/top-pages?domain=$COMPETITOR_DOMAIN&limit=20" \
  -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

  • Prioritized prospects

    Domains ordered by expected link acquisition value.

  • Evidence links

    Concrete pages proving comparable linking behavior.

  • Outreach starters

    Reusable opening lines and angle suggestions.

Advanced details

Next actions

  • Export high-priority prospects into outreach CRM.
  • Attach evidence URLs to each outreach task.
  • Run one campaign batch per priority tier weekly.

MCP tools

  • get_link_intersect

    Prospect source list.

  • get_backlinks

    Evidence pages and context for top prospects.

  • get_top_pages

    Assets likely to attract links on competitor side.

REST endpoints