RankParse

MCP Server

Use RankParse with Claude, Cursor, and other AI agents via the Model Context Protocol.

What is MCP?

The Model Context Protocol (MCP) lets AI agents call external tools. RankParse provides an MCP server that exposes all API endpoints as tools.

Setup

Add this to your MCP client configuration:

Claude Desktop / Cursor config
{
  "mcpServers": {
    "rankparse": {
      "url": "https://crawlgraph-mcp.abhi-b9f.workers.dev/sse",
      "headers": {
        "X-API-Key": "rp_your_key_here"
      }
    }
  }
}

Available tools

The MCP server exposes these tools:

ToolDescription
get_backlinksGet inbound links for a domain
get_referring_domainsGet referring domains
get_anchor_textGet anchor text distribution
get_top_pagesGet top pages by inbound links
get_outbound_linksGet outbound links
get_domain_authorityGet domain authority score
get_domain_rankGet domain rank metrics
get_site_explorerFull site overview
get_page_metaGet page metadata
get_tech_stackGet detected tech stack
get_url_indexGet URL index
get_crawl_historyGet crawl history
get_status_codesGet status code distribution
get_content_typesGet content type distribution
get_languageGet language distribution
get_domain_overlapFind domains linking to multiple targets
get_link_intersectFind shared linkers between two domains
get_similar_domainsFind similar domains

Usage with Claude

Once configured, you can ask Claude things like:

  • "What are the top backlinks for example.com?"
  • "Compare the domain authority of site-a.com and site-b.com"
  • "Find domains that link to both competitor-a.com and competitor-b.com"

The agent will automatically call the right RankParse tools and format the results.

On this page