MODEL CONTEXT PROTOCOL (MCP)

Remote MCP Server for AI Agents

Equip your AI assistants with real-time SSL/TLS certificate health, expiration countdowns, DNS CAA policy validation, and transport security checks directly via Remote URL.

🌐 Zero-Install Remote URL ⚡ HTTP JSON-RPC 2.0 & SSE 🤖 Antigravity, Cursor, Claude, Windsurf 100% Free Forever
Instant Connection via URL Zero Command / No Install

Connect Any AI Assistant

No Node.js, CLI commands, or local packages needed. Simply paste the Remote MCP URL into your AI agent or IDE settings.

Remote MCP URL: https://checksslexpiry.com/api/mcp
SSE Stream URL: https://checksslexpiry.com/api/mcp/sse

1-Click Setup Across AI Platforms

Select your AI coding assistant to copy the ready-to-use URL configuration:

Google Antigravity

Antigravity Agent Customizations / MCP

In your Antigravity IDE or agent configuration, register CheckSSLExpiry using the Remote URL:

antigravity MCP definition
{
  "mcpServers": {
    "checksslexpiry": {
      "url": "https://checksslexpiry.com/api/mcp",
      "transport": "http"
    }
  }
}

Cursor IDE

Settings → Features → MCP

In Cursor Settings, click Add New MCP Server:

Name: checksslexpiry
Type: sse
URL: https://checksslexpiry.com/api/mcp/sse
Cursor Settings JSON
{
  "name": "checksslexpiry",
  "type": "sse",
  "url": "https://checksslexpiry.com/api/mcp/sse"
}

Claude Desktop

claude_desktop_config.json

Add the remote SSE server to your Claude Desktop configuration:

claude_desktop_config.json
{
  "mcpServers": {
    "checksslexpiry": {
      "url": "https://checksslexpiry.com/api/mcp/sse",
      "transport": "sse"
    }
  }
}

Windsurf (Codeium)

~/.codeium/windsurf/mcp_config.json

Add to your Windsurf MCP configuration file:

mcp_config.json
{
  "mcpServers": {
    "checksslexpiry": {
      "url": "https://checksslexpiry.com/api/mcp/sse",
      "transport": "sse"
    }
  }
}

Zed Editor

~/.config/zed/settings.json

Add the remote context server to your Zed settings:

settings.json
{
  "context_servers": [
    {
      "id": "checksslexpiry",
      "url": "https://checksslexpiry.com/api/mcp/sse",
      "transport": "sse"
    }
  ]
}

Continue.dev

~/.continue/config.json

Add to your Continue.dev experimental tools configuration:

config.json
{
  "experimental": {
    "modelContextProtocolServers": [
      {
        "transport": {
          "type": "sse",
          "url": "https://checksslexpiry.com/api/mcp/sse"
        }
      }
    ]
  }
}

OpenAI Custom GPTs

GPT Builder → Actions → Import from URL

In ChatGPT GPT Builder, paste our OpenAPI 3.1 schema URL to give your custom GPT live SSL checking actions:

OpenAPI Action URL
https://checksslexpiry.com/api/openapi.json

LangChain / Python Agents

mcp-client / langchain-community

Call the remote MCP endpoint directly from Python autonomous agents:

Python MCP Caller
import httpx

resp = httpx.post("https://checksslexpiry.com/api/mcp", json={
    "jsonrpc": "2.0",
    "id": 1,
    "method": "tools/call",
    "params": {
        "name": "check_ssl_certificate",
        "arguments": {"domain": "github.com"}
    }
})
print(resp.json()["result"]["content"][0]["text"])
Advertisement
Ad Space Reserved

Exposed MCP Tools for AI Assistants

Once connected, your AI model will automatically discover and invoke the following tools:

Tool check_ssl_certificate(domain: string)

Inspects a website's SSL/TLS certificate in real-time. Returns exact expiration countdown, validity range, issuer CA, covered SANs, SHA-256 fingerprint, and TLS cipher strength.

Tool inspect_caa_policy(domain: string)

Queries DNS Certification Authority Authorization (CAA) records (RFC 8659) to check which CAs are permitted to issue certificates and whether wildcard certs are restricted.

Tool check_security_headers(domain: string)

Inspects HTTP transport security headers on port 443 including HSTS (Strict-Transport-Security), HSTS Preload list eligibility, CSP, and calculates a security grade (A+ to F).

Tool get_cli_verification_commands(domain: string, tool?: string)

Generates pre-configured terminal commands (OpenSSL, cURL, Python socket, or Certbot renewal fix) tailored to a specific domain name.