SSL Monitor MCP Server
MCP-сервер для мониторинга доменов/HTTPS/SSL
Сервер Model Context Protocol (MCP), предоставляющий возможности получения информации о регистрации доменов и мониторинга SSL-сертификатов. Идеально подходит для мониторинга безопасности, управления доменами и отслеживания жизненного цикла сертификатов.
🚀 Быстрый старт
HTTP (Удаленный MCP-сервер)
Имя:
sslmonURL:
https://sslmon.dev/mcp
# Claude Code
claude mcp add -t http sslmon https://sslmon.dev/mcp
# Gemini CLI
gemini mcp add -t http sslmon https://sslmon.dev/mcp
# Qwen Code
qwen mcp add -t http sslmon https://sslmon.dev/mcp
# Codex
codex mcp add sslmon --url https://sslmon.dev/mcpNPX (Локальный MCP-сервер)
Mac/Linux:
# Add to Claude Desktop
claude mcp add sslmon -- npx -y sslmon-mcpWindows:
# Add to Claude Desktop
claude mcp add sslmon -- cmd /c npx -y sslmon-mcpКонфигурация (Локальный MCP-сервер)
{
"mcpServers": {
"sslmon": {
"command": "npx",
"args": ["-y", "sslmon-mcp"],
"env": {}
}
}
}[mcp_servers.sslmon]
command = "npx"
args = ["-y", "sslmon-mcp"]Related MCP server: nslookup.io MCP Server
✨ Функции
🔍 Информация о регистрации домена - Получение дат регистрации и истечения срока действия домена
🔒 Информация об SSL-сертификате - Проверка периодов действия и деталей SSL-сертификата
🛠️ Доступные инструменты
get_domain_info
Получение информации о регистрации и истечении срока действия домена.
Параметры:
domain(строка, обязательно): Домен верхнего уровня для проверки (например, "example.com")
Возвращает: JSON-объект с полями:
domain: Запрошенный доменregistrationDate: Дата регистрации доменаexpirationDate: Дата истечения срока действия доменаregistrar: Имя регистратора доменаregistrant: Информация о владельце домена (если доступна)status: Статус доменаdaysUntilExpiry: Количество дней до истечения срока действия домена
get_ssl_cert_info
Получение информации об SSL-сертификате и статусе его действительности для любого домена.
Параметры:
domain(строка, обязательно): Домен для проверки SSL-сертификатаport(число, опционально): Порт для проверки (по умолчанию: 443)
Возвращает: JSON-объект с полями:
domain: Запрошенный доменvalidFrom: Дата начала действия сертификата (строка ISO)validTo: Дата окончания действия сертификата (строка ISO)issuer: Эмитент сертификатаsubject: Субъект сертификатаisValid: Логическое значение, указывающее, действителен ли сертификат в данный моментdaysUntilExpiry: Количество дней до истечения срока действия сертификата
Связанные проекты
sslmon-cli — Автономный CLI-бинарный файл (Go) для запросов WHOIS доменов и SSL-сертификатов, идеально подходит для shell-скриптов и CI/CD пайплайнов.
Available Tools
2 toolsget_domain_infoGet domain infoC
Get domain registration, expiration, and daysUntilExpiry using WHOIS/RDAP.
| Name | Required | Description | Default |
|---|---|---|---|
| domain | Yes | The top-level domain to check (e.g., sslmon.dev) |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden of behavioral disclosure. It mentions the data sources (WHOIS/RDAP) but fails to describe critical behaviors such as rate limits, authentication requirements, error handling, or response format. For a read operation with external dependencies, this lack of detail is a significant gap.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, efficient sentence that front-loads the key information (what data is retrieved and how). There is no wasted verbiage or redundancy, making it highly concise and well-structured for quick comprehension.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's complexity (involving external WHOIS/RDAP lookups) and the absence of both annotations and an output schema, the description is insufficient. It does not explain the return values, error conditions, or operational constraints, leaving the agent under-informed about how to interpret results or handle failures.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema has 100% description coverage, with the single parameter 'domain' clearly documented in the schema. The description does not add any additional meaning or examples beyond what the schema provides (e.g., it doesn't elaborate on domain format or validation). Thus, it meets the baseline of 3 where the schema does the heavy lifting.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the action ('Get') and the specific information retrieved ('domain registration, expiration, and daysUntilExpiry'), along with the method ('using WHOIS/RDAP'). It distinguishes from the sibling tool 'get_ssl_cert_info' by focusing on domain metadata rather than SSL certificates. However, it doesn't explicitly contrast with the sibling, so it falls short of a perfect 5.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides no guidance on when to use this tool versus alternatives like the sibling 'get_ssl_cert_info', nor does it mention any prerequisites or exclusions. It simply states what the tool does without contextual usage advice, leaving the agent to infer based on tool names alone.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_ssl_cert_infoGet SSL cert infoC
Get SSL certificate information for a host and port.
| Name | Required | Description | Default |
|---|---|---|---|
| domain | Yes | The domain to check SSL certificate for (e.g., www.sslmon.dev) | |
| port | No | Port number to check (default: 443) |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden of behavioral disclosure. It states what the tool does but fails to describe key behaviors such as network connectivity requirements, error handling, rate limits, or the format and content of the returned certificate information. This leaves significant gaps for an agent to understand operational constraints.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, efficient sentence that directly states the tool's purpose without unnecessary words. It is front-loaded and appropriately sized for a simple tool, with no wasted information.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the lack of annotations and output schema, the description is incomplete. It doesn't explain what certificate information is returned (e.g., issuer, expiry, validation status), potential errors, or dependencies like network access. For a tool that likely involves external queries and returns structured data, this omission reduces its usefulness for an agent.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, with both parameters ('domain' and 'port') well-documented in the schema. The description mentions 'host and port' but adds no additional meaning beyond what the schema provides, such as examples of valid domains or port usage beyond the default. This meets the baseline for high schema coverage.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the action ('Get SSL certificate information') and the target ('for a host and port'), which is specific and unambiguous. However, it doesn't explicitly differentiate from the sibling tool 'get_domain_info', which might provide overlapping or related information about domains.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides no guidance on when to use this tool versus alternatives like 'get_domain_info'. It lacks context about use cases, prerequisites, or exclusions, leaving the agent to infer usage based solely on the tool name and parameters.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
2 tool updates
v1.0.0- Changed
get_domain_info2 fields changed- added
Input schema / $schemaAdded value: +"http://json-schema.org/draft-07/schema#" - added
Input schema / additionalPropertiesAdded value: +false
- Changed
get_ssl_cert_info4 fields changed- added
Input schema / $schemaAdded value: +"http://json-schema.org/draft-07/schema#" - added
Input schema / additionalPropertiesAdded value: +false - added
Input schema / properties / port / exclusiveMinimumAdded value: +0 - changed
Input schema / properties / port / typePrevious value: -"number"New value: +"integer"
2 tool updates
- First observed
get_domain_info - First observed
get_ssl_cert_info
TDQS
The two tools have clearly distinct purposes: one retrieves domain registration and expiration details via WHOIS/RDAP, while the other focuses on SSL certificate information for a host and port. There is no overlap in functionality, making it easy for an agent to select the appropriate tool based on the task.
Both tools follow a consistent verb_noun pattern with 'get_' as the prefix, followed by a descriptive noun phrase (domain_info, ssl_cert_info). This uniformity makes the tool set predictable and easy to understand.
With only two tools, the server feels thin for a monitoring purpose, as it lacks operations like checking SSL expiration alerts, updating or deleting monitored domains, or listing multiple domains. A more comprehensive monitoring server would typically include more tools to cover core workflows.
The tool set is severely incomplete for an SSL monitoring domain. It only provides read-only information (get_domain_info and get_ssl_cert_info) without any management capabilities such as adding domains to monitor, setting up alerts, or handling SSL renewal processes. This leaves significant gaps that could cause agent failures in automated monitoring tasks.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Connectors
DNS lookups, health reports, SSL certs, security scans, GEO scoring, uptime checks
Domain intelligence for DNS, WHOIS/RDAP, TLS, reputation, valuation, and brand protection.
SSL/TLS scanning, free Let's Encrypt issuance, and certificate-expiry monitoring.
Domain availability over RDAP, watchlists with daily checks, change history and email alerts.
1
Related MCP Servers
- -licenseNot gradedqualityNot gradedmaintenanceEnables ethical security testing and attack surface management through SSL certificate validation, CVE queries, subdomain enumeration, security header analysis, and comprehensive reconnaissance capabilities. Designed for authorized penetration testing workflows with responsible disclosure practices.-
- AlicenseAqualityBmaintenanceProvides comprehensive tools for real-time DNS queries across 53 record types, global propagation checks, and SSL certificate analysis. It also enables domain security scans for SPF/DKIM/DMARC configurations and HTTP uptime monitoring.88822Apache 2.0
- AlicenseAqualityDmaintenanceProvides comprehensive domain research tools including RDAP, WHOIS, and DNS lookup capabilities, with automatic fallback and support for 50+ TLDs.1181MIT
- AlicenseAqualityDmaintenanceEnables checking SSL certificate expiry for any domain, with status indicators for validity and remaining days.1MIT
Appeared in Searches
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/firesh/sslmon-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server