Give Claude live backlink data through MCP.
A webhook-triggered agent wires the RankParse MCP server into Claude so it can answer “find me 20 link prospects” straight from chat.
mcp://site_explorermcp://referring_domainsAbout this workflow
A webhook-triggered agent wires the RankParse MCP server into Claude so it can answer “find me 20 link prospects” straight from chat. It's a n8n workflow built for ai agents / mcp, wiring the RankParse API into Claude and Slack. Pricing is usage-based — billed per tool use — with no subscription or per-seat fees.
Run it with an AI agent
Connect the RankParse MCP server, then drop this prompt into Claude or ChatGPT.
You have the RankParse MCP server connected as "rankparse".
Task: Give Claude live backlink data through MCP
A webhook-triggered agent wires the RankParse MCP server into Claude so it can answer “find me 20 link prospects” straight from chat.
Use the RankParse tools (mcp://site_explorer, mcp://referring_domains) to gather the data, then return a concise, structured summary of what you found and what to do next.How it works
- 1
Trigger
Runs on an n8n schedule trigger or an incoming webhook.
- 2
Pull RankParse data
Call mcp://site_explorer and mcp://referring_domains for the domains or keywords you track.
- 3
Process
Let the agent call RankParse tools over MCP and reason over the results.
- 4
Deliver
Push the result to Claude and Slack.
Set it up
- 1.Import the starter config below into n8n.
- 2.Add your RankParse API key as an X-API-Key header credential.
- 3.Connect Claude and Slack.
- 4.Set your domains or keywords and a schedule, then run it.
Starter config
A base to adapt — wire it into your n8n workflow and fill in your inputs.
{
"name": "Give Claude live backlink data through MCP",
"platform": "n8n",
"category": "AI agents / MCP",
"rankparse": {
"baseUrl": "https://api.rankparse.com",
"auth": "X-API-Key",
"endpoints": [
"mcp://site_explorer",
"mcp://referring_domains"
]
},
"connects": [
"Claude",
"Slack"
],
"schedule": "0 9 * * *",
"estimatedCredits": "Billed per tool use"
}