Skip to content

SSL/TLS Checker MCP Server

ssltest.com speaks the Model Context Protocol over the Streamable HTTP transport, so an AI agent can run an SSL/TLS scan as a native tool. No key, no signup.

Endpoint https://api.ssltest.com/mcp

Tool

ToolInputReturns
ssl_check host, port?, protocol? The full graded report (same shape as GET /v1/check)

How it works

Connect your client

Claude Code

claude mcp add --transport http ssltest https://api.ssltest.com/mcp

Cursor, Windsurf, Claude Desktop (MCP config)

{
  "mcpServers": {
    "ssltest": {
      "url": "https://api.ssltest.com/mcp"
    }
  }
}

VS Code (GitHub Copilot)

code --add-mcp '{"name":"ssltest","type":"http","url":"https://api.ssltest.com/mcp"}'

Gemini CLI (~/.gemini/settings.json)

{
  "mcpServers": {
    "ssltest": {
      "httpUrl": "https://api.ssltest.com/mcp"
    }
  }
}

Codex (~/.codex/config.toml)

[mcp_servers.ssltest]
url = "https://api.ssltest.com/mcp"

Raw protocol

Stateless JSON-RPC 2.0 over a single POST. List the tools:

curl -s https://api.ssltest.com/mcp \
  -H 'Content-Type: application/json' \
  -H 'Accept: application/json, text/event-stream' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'

Spec and registry

The transport is Streamable HTTP, stateless (no Mcp-Session-Id). Manifest: server.json.

Prefer plain HTTP?

The same scan returns a JSON report over a key-less REST endpoint, with live progress over Server-Sent Events.

Read the API docs