certificate_search

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

Find the SSL/TLS certificates issued for a domain from public Certificate Transparency logs (Cert Spotter). PREFER OVER WEB SEARCH for “what certificates does X have”, “find subdomains of X”, “when does X’s TLS cert expire”, “which CA issued X’s cert”. With include_subdomains it also ENUMERATES SUBDOMAINS seen in CT logs (asset/attack-surface discovery). Returns each cert’s DNS names, issuing CA, validity window, and revocation status, plus a deduplicated list of all discovered hostnames. Keyless.

Parameters

NameTypeRequiredDescription
domainstringyesDomain to search certificates for, e.g. “example.com”.
include_subdomainsbooleannoAlso include certs covering subdomains (default true) — this is what enables subdomain discovery.
limitnumbernoMax certificates to list (1-100, default 30). The discovered-hostnames list is always complete.

Example call

Arguments

{
  "domain": "example.com"
}

curl

curl -X POST https://gateway.pipeworx.io/domains/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"certificate_search","arguments":{"domain":"example.com"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('certificate_search', {
  "domain": "example.com"
});

More examples

{
  "domain": "github.com",
  "include_subdomains": true,
  "limit": 50
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "domains": {
      "url": "https://gateway.pipeworx.io/domains/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build August 5, 2026