aggressive
Pack: feodotracker · Endpoint: https://gateway.pipeworx.io/feodotracker/mcp
Full aggressive blocklist (includes older + lower-confidence IPs).
Example call
Arguments
{}
curl
curl -X POST https://gateway.pipeworx.io/feodotracker/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"aggressive","arguments":{}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('aggressive', {});
Response shape
Always returns: source, total, ips
| Field | Type | Description |
|---|---|---|
source | string | Source identifier (always ‘aggressive’) |
total | number | Total number of IPs in the aggressive blocklist |
ips | array | List of IPv4 addresses from aggressive feed |
Full JSON Schema
{
"type": "object",
"properties": {
"source": {
"type": "string",
"description": "Source identifier (always 'aggressive')"
},
"total": {
"type": "number",
"description": "Total number of IPs in the aggressive blocklist"
},
"ips": {
"type": "array",
"description": "List of IPv4 addresses from aggressive feed",
"items": {
"type": "string",
"description": "IPv4 address"
}
}
},
"required": [
"source",
"total",
"ips"
]
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"feodotracker": {
"url": "https://gateway.pipeworx.io/feodotracker/mcp"
}
}
}
See Getting Started for client-specific install steps.