traceroute
Pack: hackertarget · Endpoint: https://gateway.pipeworx.io/hackertarget/mcp
“Traceroute to [host]” / “what route does traffic take to [X]” / “how many hops to [address]” — traceroute via HackerTarget, listing the routers between HackerTarget’s probe host and the target. The path is measured from their network, not yours. REQUIRES AN API KEY: HackerTarget gates this endpoint, and the keyless tier answers “error valid key required” (verified 2026-09-16).
Example call
Arguments
{
"target": "1.1.1.1"
}
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":"traceroute","arguments":{"target":"1.1.1.1"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('traceroute', {
"target": "1.1.1.1"
});
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.