reverse_dns
Pack: hackertarget · Endpoint: https://gateway.pipeworx.io/hackertarget/mcp
“What hostname is [IP]” / “reverse DNS for [address]” / “PTR record lookup” — reverse DNS (PTR) lookup via HackerTarget, mapping an IP address back to the hostname its owner published. Use to identify the operator behind an address in a log line. Returns nothing when no PTR record is set, which is common for cloud IPs.
Example call
Arguments
{
"target": "8.8.8.8"
}
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":"reverse_dns","arguments":{"target":"8.8.8.8"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('reverse_dns', {
"target": "8.8.8.8"
});
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.