dns_lookup

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

“Resolve [domain]” / “what IP does [site] point at” / “A records for [X]” — forward DNS lookup via HackerTarget, returning the A/AAAA/MX/NS/SOA records the resolver holds for a hostname. Use to check where a domain currently points, or to confirm a DNS change has propagated.

Example call

Arguments

{
  "target": "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":"dns_lookup","arguments":{"target":"pipeworx.io"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('dns_lookup', {
  "target": "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