abuse_contact
Pack: ripe-stat · Endpoint: https://gateway.pipeworx.io/ripe-stat/mcp
“Abuse contact for IP [X]” / “where to report abuse on [IP / ASN]” / “report spam from [resource]” — official abuse-contact email(s) for an IP, prefix, or ASN drawn from RIR records (inetnum / aut-num objects). Use for spam/abuse/DDoS report routing.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
resource | string | yes | IP, prefix, or ASN |
Example call
Arguments
{
"resource": "8.8.8.0/24"
}
curl
curl -X POST https://gateway.pipeworx.io/ripe-stat/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"abuse_contact","arguments":{"resource":"8.8.8.0/24"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('abuse_contact', {
"resource": "8.8.8.0/24"
});
Response shape
| Field | Type | Description |
|---|---|---|
data | object | Abuse contact email(s) from inetnum/aut-num records |
status | string | API response status |
Full JSON Schema
{
"type": "object",
"properties": {
"data": {
"type": "object",
"description": "Abuse contact email(s) from inetnum/aut-num records"
},
"status": {
"type": "string",
"description": "API response status"
}
}
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"ripe-stat": {
"url": "https://gateway.pipeworx.io/ripe-stat/mcp"
}
}
}
See Getting Started for client-specific install steps.