crtsh-mcp
Enables certificate transparency log search via crt.sh, allowing users to query SSL/TLS certificates, enumerate subdomains, and retrieve certificate details with no API key required.
README
crt.sh MCP Server
MCP server wrapping crt.sh — Certificate Transparency log search. Every SSL/TLS certificate ever publicly issued, searchable by domain, wildcard, or organisation.
Tools
- search_certificates(query, limit=50) — Search CT logs for certificates matching a domain, wildcard (
%.example.com), or organisation name. Returns an object withcount,total_found,truncated, an optionalnote, and thecertificateslist (issuer, common name, SANs, validity dates, serial number). - discover_subdomains(domain) — Enumerate all known subdomains for a domain from cert history. Input is normalized automatically (
*.example.com,%.example.com,example.com., and mixed case all work). Returns{domain, subdomain_count, subdomains, truncated}. - get_certificate_details(domain) — Detailed certificate info for a domain, most recently logged first (up to 20).
Features
- No API key required — crt.sh is free and unauthenticated
- Automatic retry with exponential backoff (crt.sh is frequently overloaded — 502s, 404s, and timeouts are retried)
- In-memory TTL cache (5 min) to avoid hammering the service
- Wildcard subdomain discovery with input normalization
- Result truncation with an explicit
truncatedflag — crt.sh caps queries at ~999 rows with no pagination, so the server tells you when results may be incomplete
Install
cd crtsh-mcp
pip install -e .
Configure (Hermes)
Add to your Hermes config.yaml under mcp_servers:
mcp_servers:
crtsh:
command: /mnt/HC_Volume_105667182/kimbo/.hermes/hermes-agent/venv/bin/python3
args: ["-m", "crtsh_mcp.server"]
Or for Claude Desktop / other MCP clients:
{
"mcpServers": {
"crtsh": {
"command": "python3",
"args": ["-m", "crtsh_mcp.server"]
}
}
}
Development
pip install -e ".[dev]"
python -m pytest tests/ -v
API Notes
- Source: https://crt.sh (
?q=<identity>&output=json) - Auth: None
- Rate limits: ~60 req/min per IP (unpublished)
- Reliability: Flaky — a free community resource that is often overloaded. Expect intermittent 502s, 404s, and timeouts; this server retries transient failures automatically with backoff (1s, 2s, 4s).
- Result cap: ~999 rows per query, no pagination. The
truncatedflag signals when this cap (or yourlimit) cut results off. - Wildcards:
%is the SQL LIKE wildcard (%.example.commatches all subdomains). Only identity/org searches support JSON output; fingerprint, serial, and crt.sh-ID lookups are HTML-only and unsupported here.
Note: crt.sh is rate-limited and flaky. The server retries automatically, but if it reports the service as unavailable, wait a moment and try again.
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.