{
  "info": {
    "name": "SSLMate Cert Spotter API — mcp.ai",
    "description": "REST API for the SSLMate Cert Spotter API MCP. Set {{apiKey}} to a workspace key (sk_live_…) created at https://mcp.ai/settings/api-keys.",
    "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
  },
  "auth": {
    "type": "bearer",
    "bearer": [
      {
        "key": "token",
        "value": "{{apiKey}}",
        "type": "string"
      }
    ]
  },
  "variable": [
    {
      "key": "baseUrl",
      "value": "https://api.mcp.ai/api/sslmate_cert_spotter_api",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "sslmate_cert_spotter_api_add_monitored_domain",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/add/monitored/domain",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "add",
            "monitored",
            "domain"
          ]
        },
        "description": "Tool to add or update a monitored domain in Cert Spotter. Use when you need to enable monitoring for a new domain or update an existing one. If the domain already exists, omitted fields retain their e",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"enabled\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "sslmate_cert_spotter_api_authorize_certificate",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/authorize/certificate",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "authorize",
            "certificate"
          ]
        },
        "description": "Tool to authorize a certificate in Cert Spotter. Use when you need to prevent future notifications for a known certificate. Once authorized, the certificate will not trigger alerts if discovered in Ce",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"tbs_sha256\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "sslmate_cert_spotter_api_authorize_public_key",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/authorize/public/key",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "authorize",
            "public",
            "key"
          ]
        },
        "description": "Tool to authorize a public key in Cert Spotter. Use when you need to prevent notifications for certificates using a specific public key. Authorizing a key before certificate issuance avoids race condi",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"dns_names\": \"\",\n  \"pubkey_sha256\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "sslmate_cert_spotter_api_certspotter_get_event",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/certspotter/get/event",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "certspotter",
            "get",
            "event"
          ]
        },
        "description": "Tool to retrieve detailed information about a specific CertSpotter certificate issuance. Use when you need to inspect certificate metadata after confirming an issuance ID.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"event_id\": \"\",\n  \"expand_issuer\": false,\n  \"expand_cert_der\": false,\n  \"expand_dns_names\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "sslmate_cert_spotter_api_delete_monitored_domain",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/monitored/domain",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "monitored",
            "domain"
          ]
        },
        "description": "Tool to delete a monitored domain from Cert Spotter. Use when you need to remove a domain from monitoring. Returns success confirmation on deletion (HTTP 204). Returns 404 if domain not found.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "sslmate_cert_spotter_api_get_certificate_v2",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/certificate/v2",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "certificate",
            "v2"
          ]
        },
        "description": "Tool to retrieve certificate information by common name (domain). Use when you need to inspect certificate metadata, status, or configuration for a specific domain.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"common_name\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "sslmate_cert_spotter_api_get_monitored_domain",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/monitored/domain",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "monitored",
            "domain"
          ]
        },
        "description": "Tool to retrieve a specific monitored domain by its name. Use when you need to check the monitoring status of a domain.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "sslmate_cert_spotter_api_list_ct_issuances",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/ct/issuances",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "ct",
            "issuances"
          ]
        },
        "description": "Tool to list certificate issuances for a domain from Certificate Transparency logs. Use when you need to discover all unexpired certificates issued for a domain or its subdomains.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"after\": \"\",\n  \"domain\": \"\",\n  \"expand\": \"\",\n  \"match_wildcards\": false,\n  \"include_subdomains\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "sslmate_cert_spotter_api_list_monitored_domains",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/monitored/domains",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "monitored",
            "domains"
          ]
        },
        "description": "Tool to list all monitored domains. Use when you need to audit or review the domains currently monitored by Cert Spotter.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}