crawlgraph_domain_changes

Pack: crawlgraph · Endpoint: https://gateway.pipeworx.io/crawlgraph/mcp

Quarter-over-quarter diff of referring domains for a domain — what was added or lost between two Common Crawl releases. Useful for catching link rot, sudden spikes (PR coverage), and outreach campaign attribution. Counts as one call against the backlinks quota.

Parameters

NameTypeRequiredDescription
domainstringyesTarget domain.
fromstringnoOlder release_id (e.g., “CC-MAIN-2025-51”). Default = previous release.
tostringnoNewer release_id (e.g., “CC-MAIN-2026-04”). Default = latest release.
_apiKeystringyesCrawlGraph API key.

Example call

Arguments

{
  "domain": "example.com",
  "_apiKey": "your-crawlgraph-api-key"
}

curl

curl -X POST https://gateway.pipeworx.io/crawlgraph/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"crawlgraph_domain_changes","arguments":{"domain":"example.com","_apiKey":"your-crawlgraph-api-key"}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('crawlgraph_domain_changes', {
  "domain": "example.com",
  "_apiKey": "your-crawlgraph-api-key"
});

More examples

{
  "domain": "example.com",
  "from": "CC-MAIN-2025-51",
  "to": "CC-MAIN-2026-04",
  "_apiKey": "your-crawlgraph-api-key"
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "crawlgraph": {
      "url": "https://gateway.pipeworx.io/crawlgraph/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build August 30, 2026