MCP Tool · Discovery

port_scan

Run a TCP connect scan on a host. By default probes the top ~40 common ports; an explicit port list or limit can be supplied. Returns open ports with best-effort service names.

Input

NameTypeRequiredDescription
hoststringyesHostname (example.com) or IPv4 literal (1.2.3.4). DNS resolution is done on the scan target.
portsarraynoOptional explicit list of TCP ports. When omitted, scans the top 40 ports by default.
limitnumbernoWhen `ports` is omitted, how many of the top ports to scan. Defaults to 40.

REST API

curl -H "Authorization: Bearer sic_..." \
  -H "Content-Type: application/json" \
  -X POST https://sicenter.io/api/tools/port_scan \
  -d '{"host":"<string>"}'

MCP server

# MCP — call from Claude Desktop, Cursor, or any MCP client
{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "port_scan",
    "arguments": {
        "host": "<string>"
    }
  }
}

Endpoint: https://sicenter.io/api/mcp. See /mcp for connection guides for Claude Desktop, Cursor, and custom orchestrators.

More tools in Discovery


Browse the full MCP server documentation or jump to the API key management page in your dashboard.