find_shared_dns
Pack: hackertarget · Endpoint: https://gateway.pipeworx.io/hackertarget/mcp
“What else uses this nameserver” / “domains sharing DNS with [X]” — shared-nameserver search via HackerTarget, listing other domains served by the same DNS server. Use to map the infrastructure footprint of an operator, or to see who else would be affected if a nameserver went down.
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":"find_shared_dns","arguments":{"target":"pipeworx.io"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('find_shared_dns', {
"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.