check_ip

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

Check whether a given IPv4 is on the current blocklist.

Parameters

NameTypeRequiredDescription
ipstringyes

Example call

Arguments

{
  "ip": "192.168.1.100"
}

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":"check_ip","arguments":{"ip":"192.168.1.100"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('check_ip', {
  "ip": "192.168.1.100"
});

More examples

{
  "ip": "10.0.0.50"
}

Response shape

Always returns: ip, listed, entries

FieldTypeDescription
ipstringThe IPv4 address queried
listedbooleanWhether the IP is on the blocklist
entriesarrayMatching blocklist entries for this IP
Full JSON Schema
{
  "type": "object",
  "properties": {
    "ip": {
      "type": "string",
      "description": "The IPv4 address queried"
    },
    "listed": {
      "type": "boolean",
      "description": "Whether the IP is on the blocklist"
    },
    "entries": {
      "type": "array",
      "description": "Matching blocklist entries for this IP",
      "items": {
        "type": "object",
        "properties": {
          "ip_address": {
            "type": "string",
            "description": "IP address"
          },
          "port": {
            "type": "number",
            "description": "Port number"
          },
          "status": {
            "type": "string",
            "description": "Status (e.g. online, offline)"
          },
          "hostname": {
            "type": [
              "string",
              "null"
            ],
            "description": "Associated hostname"
          },
          "as_number": {
            "type": "number",
            "description": "Autonomous System number"
          },
          "as_name": {
            "type": "string",
            "description": "Autonomous System name"
          },
          "country": {
            "type": "string",
            "description": "Country code or name"
          },
          "first_seen": {
            "type": "string",
            "description": "ISO timestamp of first observation"
          },
          "last_online": {
            "type": "string",
            "description": "ISO timestamp of last online status"
          },
          "malware": {
            "type": "string",
            "description": "Associated malware family name"
          }
        },
        "required": [
          "ip_address"
        ]
      }
    }
  },
  "required": [
    "ip",
    "listed",
    "entries"
  ]
}

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.

Regenerated from source · build July 6, 2026