seo_backlinks_history
Pack: seo-backlinks · Endpoint: https://gateway.pipeworx.io/seo-backlinks/mcp
Backlink growth over time for <domain> — monthly history of backlinks, new/lost referring domains, and rank, via DataForSEO. “Is this domain gaining or losing links”. Example: seo_backlinks_history({ target: “nike.com”, date_from: “2024-01-01”, _apiKey: “your-base64-key” })
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
target | string | yes | Domain, subdomain, or URL, e.g. “nike.com” |
date_from | string | no | Start date YYYY-MM-DD (min 2019-01-01; default 1 year ago) |
date_to | string | no | End date YYYY-MM-DD (default today) |
_apiKey | string | yes | DataForSEO API key = base64(“login:password”) |
Example call
Arguments
{
"target": "nike.com",
"_apiKey": "your-seo-backlinks-api-key"
}
curl
curl -X POST https://gateway.pipeworx.io/seo-backlinks/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"seo_backlinks_history","arguments":{"target":"nike.com","_apiKey":"your-seo-backlinks-api-key"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('seo_backlinks_history', {
"target": "nike.com",
"_apiKey": "your-seo-backlinks-api-key"
});
More examples
{
"target": "example.com",
"date_from": "2023-01-01",
"date_to": "2024-01-01",
"_apiKey": "your-seo-backlinks-api-key"
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"seo-backlinks": {
"url": "https://gateway.pipeworx.io/seo-backlinks/mcp"
}
}
}
See Getting Started for client-specific install steps.