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:
{
"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:
| Tool | Description |
|---|---|
get_backlinks | Get inbound links for a domain |
get_referring_domains | Get referring domains |
get_anchor_text | Get anchor text distribution |
get_top_pages | Get top pages by inbound links |
get_outbound_links | Get outbound links |
get_domain_authority | Get domain authority score |
get_domain_rank | Get domain rank metrics |
get_site_explorer | Full site overview |
get_page_meta | Get page metadata |
get_tech_stack | Get detected tech stack |
get_url_index | Get URL index |
get_crawl_history | Get crawl history |
get_status_codes | Get status code distribution |
get_content_types | Get content type distribution |
get_language | Get language distribution |
get_domain_overlap | Find domains linking to multiple targets |
get_link_intersect | Find shared linkers between two domains |
get_similar_domains | Find 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.