SEO data inside Claude Code.
Add the RankParse MCP server to Claude Code and query backlinks, domain authority, tech stack, and 20+ SEO endpoints directly from the agent — no browser, no dashboard.
Setup in 2 minutes
- 1
Get a free API key
Sign up at rankparse.com/signup. 100 free credits, no card.
- 2
Add to your MCP config
Open Claude Code settings and add the RankParse MCP server. Replace
rp_your_key_herewith your actual key.{ "mcpServers": { "rankparse": { "url": "https://crawlgraph-mcp.abhi-b9f.workers.dev/sse", "headers": { "X-API-Key": "rp_your_key_here" } } } } - 3
Start querying
Ask Claude Code anything SEO-related. It will automatically call the right RankParse tools.
Example prompts
What are the top 20 backlinks for stripe.com?
Compare the domain authority of linear.app and height.app.
Find domains that link to both vercel.com and netlify.com.
What's the anchor text distribution for github.com? Are there any spammy patterns?
Which pages on example.com have the most inbound links?
What tech stack does competitor.com use?
Give me the referring domains for my-site.com and flag any that dropped off since last quarter.
What the MCP server exposes
Or use the REST API directly
You don't need MCP. Paste the API key into Claude's context and it can call the REST endpoints directly.
# Works without MCP too — plain REST from any shell
curl "https://api.rankparse.com/v1/domain-authority?domain=stripe.com" \
-H "X-API-Key: rp_your_key"
{
"data": {
"domain": "stripe.com",
"authority_score": 91,
"referring_domains": 142381,
"backlinks": 4821047
},
"credits_used": 1,
"credits_remaining": 999
}