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.
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.
https://checksslexpiry.com/api/mcp 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 / MCPIn your Antigravity IDE or agent configuration, register CheckSSLExpiry using the Remote URL:
{
"mcpServers": {
"checksslexpiry": {
"url": "https://checksslexpiry.com/api/mcp",
"transport": "http"
}
}
} Cursor IDE
Settings → Features → MCPIn Cursor Settings, click Add New MCP Server:
https://checksslexpiry.com/api/mcp/sse {
"name": "checksslexpiry",
"type": "sse",
"url": "https://checksslexpiry.com/api/mcp/sse"
} Claude Desktop
claude_desktop_config.jsonAdd the remote SSE server to your Claude Desktop configuration:
{
"mcpServers": {
"checksslexpiry": {
"url": "https://checksslexpiry.com/api/mcp/sse",
"transport": "sse"
}
}
} Windsurf (Codeium)
~/.codeium/windsurf/mcp_config.jsonAdd to your Windsurf MCP configuration file:
{
"mcpServers": {
"checksslexpiry": {
"url": "https://checksslexpiry.com/api/mcp/sse",
"transport": "sse"
}
}
} Zed Editor
~/.config/zed/settings.jsonAdd the remote context server to your Zed settings:
{
"context_servers": [
{
"id": "checksslexpiry",
"url": "https://checksslexpiry.com/api/mcp/sse",
"transport": "sse"
}
]
} Continue.dev
~/.continue/config.jsonAdd to your Continue.dev experimental tools configuration:
{
"experimental": {
"modelContextProtocolServers": [
{
"transport": {
"type": "sse",
"url": "https://checksslexpiry.com/api/mcp/sse"
}
}
]
}
} OpenAI Custom GPTs
GPT Builder → Actions → Import from URLIn ChatGPT GPT Builder, paste our OpenAPI 3.1 schema URL to give your custom GPT live SSL checking actions:
https://checksslexpiry.com/api/openapi.json LangChain / Python Agents
mcp-client / langchain-communityCall the remote MCP endpoint directly from Python autonomous agents:
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"]) Exposed MCP Tools for AI Assistants
Once connected, your AI model will automatically discover and invoke the following tools:
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.
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.
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).
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.