mtr

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

“Network path to [host]” / “where does traffic to [X] slow down” / “per-hop latency” — mtr report via HackerTarget, combining traceroute and ping into a per-hop table of loss and latency measured FROM HackerTarget’s probe host, not from you. Use to see which network hop is losing packets. 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":"mtr","arguments":{"target":"1.1.1.1"}}}'

TypeScript (@pipeworx/sdk)

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

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

Regenerated from source · build September 16, 2026