page_links

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

“What does [page] link to” / “extract every link from [URL]” / “outbound links on a page” — link extraction via HackerTarget, fetching one web page and returning the URLs it links to. Use to map a site section or find outbound references. One page only — it does not crawl, and it returns the links as published, not their fetched status.

Example call

Arguments

{
  "target": "https://pipeworx.io/"
}

curl

curl -X POST https://gateway.pipeworx.io/hackertarget/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"page_links","arguments":{"target":"https://pipeworx.io/"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('page_links', {
  "target": "https://pipeworx.io/"
});

Connect

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

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

See Getting Started for client-specific install steps.

Regenerated from source · build September 16, 2026