MCP Tool · Discovery

subdomain_enum

Passively enumerate subdomains of a domain by querying certificate transparency logs (crt.sh). Fully passive — does not touch the target's authoritative DNS.

Input

NameTypeRequiredDescription
domainstringyesApex domain to enumerate (e.g. example.com).
includeWildcardsaxnoWhether to include wildcard records (*.foo.example.com). Off by default because they're noise for most workflows.

REST API

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

MCP server

# MCP — call from Claude Desktop, Cursor, or any MCP client
{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "subdomain_enum",
    "arguments": {
        "domain": "<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.