reverse_ip
Pack: hackertarget · Endpoint: https://gateway.pipeworx.io/hackertarget/mcp
“What else is hosted on [IP]” / “other sites on the same server” / “reverse IP lookup” — reverse IP lookup via HackerTarget, listing hostnames known to resolve to one address. Use to spot shared hosting or to find sibling properties of an operator. A CDN address returns many unrelated sites, so co-location is not evidence of common ownership.
Example call
Arguments
{
"target": "104.21.12.212"
}
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_ip","arguments":{"target":"104.21.12.212"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('reverse_ip', {
"target": "104.21.12.212"
});
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.