crawlgraph_gap_outreach_targets
Pack: crawlgraph · Endpoint: https://gateway.pipeworx.io/crawlgraph/mcp
The warm-outreach play: gap_analysis filtered to ONLY the linking domains that link to EVERY competitor you listed but not to you. These are the highest-conviction outreach candidates — every competitor in the set has the link, so the topic/audience is verified. Same async pattern as crawlgraph_gap_analysis (polls up to ~10s; returns job_id if still running). Counts as one gap-analysis quota call.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
my_domain | string | yes | Your domain. |
competitor_domains | array | yes | 2–5 competitor domains. The filter is strongest with more competitors; 2 is the minimum for “warm outreach” to be meaningful. |
items | string | no | |
min_authority | number | no | Optional minimum CrawlGraph authority threshold to filter results client-side. |
_apiKey | string | yes | CrawlGraph API key. |
Example call
Arguments
{
"my_domain": "mysite.com",
"competitor_domains": [
"competitor1.com",
"competitor2.com",
"competitor3.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_outreach_targets","arguments":{"my_domain":"mysite.com","competitor_domains":["competitor1.com","competitor2.com","competitor3.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_outreach_targets', {
"my_domain": "mysite.com",
"competitor_domains": [
"competitor1.com",
"competitor2.com",
"competitor3.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.