Your Data · Attack Surface

list_my_discovered_domains

List domains found by your EdgeProtect discovery (registrar, registration/expiry, nameservers). Distinct from the brand-protection monitored list (see list_my_domains). Costs 1 credit.

POST
tools/call

Cost: 1 credit per successful call  ·  Scope: mcp:org  ·  Response shape: jsonb

Returns data scoped to your own organisation only — the organisation is resolved from your API key and injected server-side, never read from the request.

Parameters

limitintegeroptionaldefault: 100

Maximum number of domains to return. Accepted range: 1–500.

Example invocation

Ask your agent: "What domains did discovery find for us?"

curl -s https://api.precursorintelligence.com/functions/v1/mcp \
  -H "Authorization: Bearer $PRECURSOR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"list_my_discovered_domains","arguments":{"limit":100}}}'

Response

result.content[0].text (parsed)
{
  "count": 2,
  "items": [
    {
      "domain_name": "precursorsecurity.com",
      "domain_type": "primary",
      "registrar": "Cloudflare, Inc.",
      "registration_date": "2015-08-19T00:00:00.000Z",
      "expiration_date": "2027-08-19T00:00:00.000Z",
      "status": "active",
      "nameservers": [
        "ns1.cloudflare.com",
        "ns2.cloudflare.com"
      ],
      "mx_records": [
        "10 mail.precursorsecurity.com"
      ]
    },
    {
      "domain_name": "precursor-security.co.uk",
      "domain_type": "alias",
      "registrar": "Nominet UK",
      "registration_date": "2016-02-03T00:00:00.000Z",
      "expiration_date": "2026-02-03T00:00:00.000Z",
      "status": "active",
      "nameservers": [
        "ns1.cloudflare.com",
        "ns2.cloudflare.com"
      ],
      "mx_records": []
    }
  ],
  "generated_at": "2026-06-18T08:15:00.000Z"
}

The full MCP envelope, including _meta.precursor with request_id, credits, and response_truncated, is documented in Response Format.

Response fields

countintegeroptional

Number of domains returned (equals items.length).

itemsarrayoptional

Domains found by your EdgeProtect discovery. Each object contains the fields below.

items[].domain_namestringoptional

The fully qualified domain name.

items[].domain_typestringoptional

The discovered classification of the domain, e.g. primary or alias.

items[].registrarstring | nulloptional

The domain registrar, when available from WHOIS.

items[].registration_datestring | nulloptional

ISO 8601 timestamp of when the domain was registered (UTC), when available.

items[].expiration_datestring | nulloptional

ISO 8601 timestamp of when the registration expires (UTC), when available.

items[].statusstringoptional

The domain status, e.g. active.

items[].nameserversarrayoptional

Array of nameserver hostnames for the domain.

items[].mx_recordsarrayoptional

Array of MX record values for the domain.

generated_atstringoptional

ISO 8601 timestamp indicating when this response was generated.

Errors

CodeMessageWhen
-32602invalid_params: limit: min:1limit is less than 1
-32602invalid_params: limit: max:500limit exceeds 500
-32001unauthorizedThe API key is invalid/revoked, the IP is not allowed, or the key lacks the mcp:org scope.
-32002insufficient_creditsYour credit balance is zero; top up from the dashboard
-32603internalUnexpected server error; the credit is automatically refunded