seo_backlinks_list
Pack: seo-backlinks · Endpoint: https://gateway.pipeworx.io/seo-backlinks/mcp
Backlinks pointing at <domain> — the actual list of linking pages with source domain, anchor text, dofollow flag, and first/last seen dates, via DataForSEO. “Who links to this site”. Example: seo_backlinks_list({ target: “nike.com”, limit: 50, _apiKey: “your-base64-key” })
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
target | string | yes | Domain, subdomain, or URL, e.g. “nike.com” |
mode | string | no | ”as_is” (default), “one_per_domain”, or “one_per_anchor” |
limit | integer | no | Max backlinks to return (default 50, max 200) |
backlinks_status_type | string | no | ”live” (default), “all”, or “lost” |
_apiKey | string | yes | DataForSEO API key = base64(“login:password”) |
Example call
Arguments
{
"target": "nike.com",
"limit": 50,
"_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_list","arguments":{"target":"nike.com","limit":50,"_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_list', {
"target": "nike.com",
"limit": 50,
"_apiKey": "your-seo-backlinks-api-key"
});
More examples
{
"target": "example.com",
"mode": "one_per_domain",
"limit": 100,
"backlinks_status_type": "live",
"_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.