get_blacklist

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

Get the AbuseIPDB blacklist of the most-reported IP addresses. Returns IPs with their abuse confidence scores. Useful for building blocklists.

Parameters

NameTypeRequiredDescription
_apiKeystringyesAbuseIPDB API key
limitnumbernoNumber of IPs to return (default 100, max 10000)

Example call

Arguments

{
  "_apiKey": "your-abuseipdb-api-key",
  "limit": 100
}

curl

curl -X POST https://gateway.pipeworx.io/abuseipdb/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"get_blacklist","arguments":{"_apiKey":"your-abuseipdb-api-key","limit":100}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('get_blacklist', {
  "_apiKey": "your-abuseipdb-api-key",
  "limit": 100
});

More examples

{
  "_apiKey": "your-abuseipdb-api-key",
  "limit": 1000
}

Response shape

Always returns: count, ips

FieldTypeDescription
countnumberNumber of IPs returned in the blacklist
ipsarrayList of blacklisted IPs with abuse scores
Full JSON Schema
{
  "type": "object",
  "properties": {
    "count": {
      "type": "number",
      "description": "Number of IPs returned in the blacklist"
    },
    "ips": {
      "type": "array",
      "description": "List of blacklisted IPs with abuse scores",
      "items": {
        "type": "object",
        "properties": {
          "ip": {
            "type": "string",
            "description": "IP address on the blacklist"
          },
          "abuse_confidence_score": {
            "type": "number",
            "description": "Abuse confidence score for this IP"
          }
        },
        "required": [
          "ip",
          "abuse_confidence_score"
        ]
      }
    }
  },
  "required": [
    "count",
    "ips"
  ]
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "abuseipdb": {
      "url": "https://gateway.pipeworx.io/abuseipdb/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build May 9, 2026