crawlgraph_gap_analysis
Pack: crawlgraph · Endpoint: https://gateway.pipeworx.io/crawlgraph/mcp
Backlink gap analysis: find domains linking to your competitors but NOT to you. Submit your domain + 1–5 competitor domains and CrawlGraph runs an async job (typically completes in seconds; longer for large profiles). This tool polls up to ~10s and either returns the full gap list, or — if still running — returns the job_id so you can resume via crawlgraph_gap_status. Counts against the gap-analysis quota when the job is submitted.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
my_domain | string | yes | Your domain (bare host). |
competitor_domains | array | yes | 1–5 competitor domains to compare against. |
items | string | no | |
_apiKey | string | yes | CrawlGraph API key. |
Example call
Arguments
{
"my_domain": "mysite.com",
"competitor_domains": [
"competitor1.com",
"competitor2.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_gap_analysis","arguments":{"my_domain":"mysite.com","competitor_domains":["competitor1.com","competitor2.com"],"_apiKey":"your-crawlgraph-api-key"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('crawlgraph_gap_analysis', {
"my_domain": "mysite.com",
"competitor_domains": [
"competitor1.com",
"competitor2.com"
],
"_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.