seo_backlinks_anchors

Pack: seo-backlinks · Endpoint: https://gateway.pipeworx.io/seo-backlinks/mcp

Anchor-text distribution for <domain> — the anchor texts used in backlinks to a target, each with backlink and referring-domain counts, via DataForSEO. “What anchor text do links to this site use”. Example: seo_backlinks_anchors({ target: “nike.com”, limit: 50, _apiKey: “your-base64-key” })

Parameters

NameTypeRequiredDescription
targetstringyesDomain, subdomain, or URL, e.g. “nike.com”
limitintegernoMax anchors to return (default 50, max 200)
backlinks_status_typestringno”live” (default), “all”, or “lost”
_apiKeystringyesDataForSEO 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_anchors","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_anchors', {
  "target": "nike.com",
  "limit": 50,
  "_apiKey": "your-seo-backlinks-api-key"
});

More examples

{
  "target": "example.com",
  "limit": 75,
  "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.

Regenerated from source · build August 11, 2026