as_lookup
Pack: hackertarget · Endpoint: https://gateway.pipeworx.io/hackertarget/mcp
“Which ASN owns [IP]” / “what network is this address on” / “who is the upstream provider” — autonomous system lookup via HackerTarget, returning the ASN, the announced prefix and the network’s name for an address. Use to attribute an address to a hosting provider, ISP or cloud region.
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":"as_lookup","arguments":{"target":"1.1.1.1"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('as_lookup', {
"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.