npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

sslmon-mcp

v1.0.4

Published

MCP server for domain registration info and SSL certificate monitoring

Readme

Domain/HTTPS/SSL MCP Server

MCP npm version License: MIT Node.js

Languages: English | 中文 | 日本語

A Model Context Protocol (MCP) server that provides domain registration information and SSL certificate monitoring capabilities. Perfect for security monitoring, domain management, and certificate lifecycle tracking.

🚀 Quick Start

HTTP (Remote MCP server)

Name: sslmon URL: https://sslmon.dev/mcp

NPX (Local MCP server)

Mac/Linux:

# Add to Claude Desktop
claude mcp add sslmon -- npx -y sslmon-mcp

Windows:

# Add to Claude Desktop
claude mcp add sslmon -- cmd /c npx -y sslmon-mcp

Configuration (Local MCP server)

{
  "mcpServers": {
    "sslmon": {
      "command": "npx",
      "args": ["-y", "sslmon-mcp"],
      "env": {}
    }
  }
}
[mcp_servers.sslmon]
command = "npx"
args = ["-y", "sslmon-mcp"]

✨ Features

  • 🔍 Domain Registration Info - Get domain registration and expiration dates
  • 🔒 SSL Certificate Info - Check SSL certificate validity periods and details

🛠️ Available Tools

get_domain_info

Get domain registration and expiration information.

Parameters:

  • domain (string, required): The top-level domain to check (e.g., "example.com")

Returns: JSON object with:

  • domain: The queried domain
  • registrationDate: Domain registration date
  • expirationDate: Domain expiration date
  • registrar: Domain registrar name
  • registrant: Domain registrant information (when available)
  • status: Domain status
  • daysUntilExpiry: Number of days until domain expires

get_ssl_cert_info

Get SSL certificate information and validity status for any domain.

Parameters:

  • domain (string, required): The domain to check SSL certificate for
  • port (number, optional): Port number to check (default: 443)

Returns: JSON object with:

  • domain: The queried domain
  • validFrom: Certificate valid from date (ISO string)
  • validTo: Certificate valid to date (ISO string)
  • issuer: Certificate issuer
  • subject: Certificate subject
  • isValid: Boolean indicating if certificate is currently valid
  • daysUntilExpiry: Number of days until certificate expires