# Ssl Certificate Checker — MCP tool `findutils:ssl_certificate_checker`

Return the TLS certificate details of a public hostname: validity, issuer, subject, expiry and days remaining, protocol, key size, signature algorithm, serial, SHA-256 fingerprint and SANs. The scan can take a while; when status is "in_progress" call again after retry_after_seconds.

- Category: network
- MCP server: https://mcp.findutils.com/ (Streamable HTTP, no API keys, 120 req/min per IP)
- REST endpoint: POST https://api.findutils.com/api/tools/ssl-certificate-checker/execute (no API keys, 60 req/min per IP)
- Network tool: fetches a fixed, hard-coded public upstream (never a private host).
- Reference page: https://findutils.com/mcp/ssl-certificate-checker/
- Same tool on the other surface: https://findutils.com/api/ssl-certificate-checker/

## Connect

```bash
claude mcp add findutils --transport http https://mcp.findutils.com/
```

Claude Desktop (`claude_desktop_config.json`):

```json
{
  "mcpServers": {
    "findutils": {
      "url": "https://mcp.findutils.com/"
    }
  }
}
```

## Call the tool (verified example)

```bash
curl -X POST https://mcp.findutils.com/ \
  -H "Content-Type: application/json" \
  -d '{
    "jsonrpc": "2.0",
    "id": 1,
    "method": "tools/call",
    "params": {
      "name": "ssl_certificate_checker",
      "arguments": {
        "domain": "example.com"
      }
    }
  }'
```

## Input schema

| Argument | Type | Required | Description |
|---|---|---|---|
| `domain` | string | yes | Hostname to check, e.g. "example.com". A URL is accepted; only the hostname is used. |

Example arguments (verified):

```json
{
  "domain": "example.com"
}
```

## Also a REST endpoint

```bash
curl -X POST https://api.findutils.com/api/tools/ssl-certificate-checker/execute \
  -H "Content-Type: application/json" \
  -d '{
    "domain": "example.com"
  }'

# Parameter schema
curl https://api.findutils.com/api/tools/ssl-certificate-checker
```

Full REST reference: https://findutils.com/api/ssl-certificate-checker/ · OpenAPI 3.1 spec: https://findutils.com/api/openapi.json

---
Full catalog: POST https://mcp.findutils.com/ with method `tools/list` · https://findutils.com/mcp/ · https://findutils.com/llms.txt
