MCP Tool · Validation

exposure_confirm

Re-validates a finding's exposed port with a single TCP connect (no payload). Returns whether the service is still publicly reachable.

Input

NameTypeRequiredDescription
finding_idstringyesUUID of the finding to re-validate. Finding must have host + port in its metadata.

REST API

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

MCP server

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

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

More tools in Validation


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