crawlgraph_gap_status

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

Poll a previously-submitted gap analysis job by ID. Use this when crawlgraph_gap_analysis or crawlgraph_gap_outreach_targets returned status=pending with a job_id — call this with the same job_id to retrieve the result once status=completed. Read-only; no quota cost.

Parameters

NameTypeRequiredDescription
job_idstringyesThe gap job ID (looks like “gap_a1b2c3”).
_apiKeystringyesCrawlGraph API key.

Example call

Arguments

{
  "job_id": "gap_a1b2c3d4e5f6",
  "_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_status","arguments":{"job_id":"gap_a1b2c3d4e5f6","_apiKey":"your-crawlgraph-api-key"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('crawlgraph_gap_status', {
  "job_id": "gap_a1b2c3d4e5f6",
  "_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