{
  "info": {
    "name": "AbuseIPDB — mcp.ai",
    "description": "REST API for the AbuseIPDB MCP. Set {{apiKey}} to a workspace key (sk_live_…) created at https://mcp.ai/settings/api-keys.",
    "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
  },
  "auth": {
    "type": "bearer",
    "bearer": [
      {
        "key": "token",
        "value": "{{apiKey}}",
        "type": "string"
      }
    ]
  },
  "variable": [
    {
      "key": "baseUrl",
      "value": "https://api.mcp.ai/api/abuselpdb",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "abuselpdb_blacklist",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/blacklist",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "blacklist"
          ]
        },
        "description": "Retrieves a list of the most reported malicious IP addresses from AbuseIPDB's database. Use this tool to build dynamic blocklists, threat intelligence feeds, or firewall rules. The blacklist is update",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"ipVersion\": 0,\n  \"onlyCountries\": \"\",\n  \"exceptCountries\": \"\",\n  \"confidenceMinimum\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "abuselpdb_bulk_report",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/bulk/report",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "bulk",
            "report"
          ]
        },
        "description": "Submit multiple IP abuse reports to AbuseIPDB in bulk via CSV upload. Use this when you need to report many malicious IPs at once instead of one-by-one. Returns the count of successfully saved reports",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"csv\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "abuselpdb_check_block",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/check/block",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "check",
            "block"
          ]
        },
        "description": "Tool to check the reputation of all IP addresses in a CIDR range. Use when you need aggregated abuse data for a network block.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"network\": \"\",\n  \"maxAgeInDays\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "abuselpdb_check_ip",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/check/ip",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "check",
            "ip"
          ]
        },
        "description": "Tool to check the reputation of an IP address. Use when you need to determine if an IP address has been reported for abusive activity within a specified look-back period. Example: CheckIp(ipAddress='8",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"verbose\": false,\n  \"ipAddress\": \"\",\n  \"maxAgeInDays\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "abuselpdb_clear_address",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/clear/address",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "clear",
            "address"
          ]
        },
        "description": "Tool to remove all reports associated with a specific IP address. Use when you need to purge your own abuse records after verifying control of the IP.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"ipAddress\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "abuselpdb_get_reports",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/reports",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "reports"
          ]
        },
        "description": "Retrieve abuse reports for a specific IP address from AbuseIPDB. Use this tool to view the history of abuse complaints filed against an IP address, including the reported abuse categories, reporter de",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"perPage\": 0,\n  \"ipAddress\": \"\",\n  \"maxAgeInDays\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}