@oksigenia/checker-mcp
Provides DNS resolution and malware/phishing reputation lookup through Cloudflare's DoH and security resolver.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@@oksigenia/checker-mcpscan example.com for DNS and email issues"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
@oksigenia/checker-mcp
A domain security and privacy checker exposed as an MCP server. It runs entirely on your machine, makes no telemetry calls, and resolves DNS through Cloudflare DoH instead of Google.
Ask any MCP client to scan a domain and get back a scored report covering the certificate, email authentication, DNS and infrastructure, and web security headers, with a plain remediation for anything that fails.
Why it's different
Local-first. The server runs over stdio and does its own DNS-over-HTTPS, HTTP, RDAP and TLS lookups. The only network traffic is the checks themselves.
Zero telemetry. No analytics, no phone-home, no third-party scoring service in the loop.
Privacy by default. DNS goes to Cloudflare DoH rather than Google, and the reputation check uses Cloudflare's malware/phishing resolver.
Free software. Licensed GPL-3.0-or-later. Read it, run it, change it, self-host it.
Tools
The server exposes three tools.
check_domain
Scan a domain or URL and return a scored report from real live checks.
// arguments
{
"domain": "example.com", // bare domain or full URL
"categories": ["ssl", "email"], // optional subset; defaults to all
"format": "report", // "report" (default) or "json"
"lang": "en" // "es" or "en"
}list_checks
List every check grouped by category, with the reason each one matters.
{ "lang": "en" }explain_check
Explain a single check by id, why it matters, and how to remediate a failure.
{ "check_id": "dmarc", "lang": "en" }Checks
Seventeen checks across four categories, weighted to a 0-100 score.
Category | Check id | What it verifies |
ssl |
| SSL/TLS certificate validity and expiry |
| SPF record present and not overly permissive | |
| DMARC policy and reporting | |
| DKIM signing (common selectors probed) | |
| MTA-STS against SMTP downgrade attacks | |
| MX records for mail delivery | |
| BIMI brand logo record and VMC | |
dns |
| DNSSEC signing on the zone |
dns |
| PTR / forward-confirmed reverse DNS |
dns |
| CAA records restricting certificate issuance |
dns |
| Malware/phishing reputation |
dns |
| Domain registration expiry |
dns |
| WHOIS/RDAP personal-data redaction |
web |
| HTTP security headers (HSTS, CSP, X-Frame-Options, …) |
web |
| Content-Security-Policy quality |
web |
| CMS/server version and API exposure |
web |
| HSTS preload-list status |
Run list_checks for the full descriptions, or explain_check for one at a time.
Install
Run it straight from npm with npx:
npx @oksigenia/checker-mcpRegister it with Claude Code:
claude mcp add oksigenia-checker -- npx -y @oksigenia/checker-mcpOr add it to any MCP client config (works in Claude Desktop, Claude Code, or any MCP client):
{
"mcpServers": {
"oksigenia-checker": {
"command": "npx",
"args": ["-y", "@oksigenia/checker-mcp"],
"env": { "OKSIGENIA_LANG": "en" }
}
}
}Then ask: "Check the security of example.com" or "Explain the dmarc check."
Languages
Reports render in Spanish and English. Set the default with OKSIGENIA_LANG (es or en), or pass lang on any tool call. It defaults to English.
Privacy
The only thing that leaves your machine is the domain name you scan, sent to:
Cloudflare DoH (
cloudflare-dns.com) and Cloudflare's security resolver, for DNS and reputationpublic RDAP (
rdap.org), for registration and WHOIS-privacy datathe HSTS preload API, for preload status
the target site itself, over HTTPS, to read its certificate and security headers
There is no telemetry, no analytics, and no third-party scoring service. Nothing about your queries is stored or transmitted anywhere else.
Develop
npm install
npm run build # tsup -> dist/
npm run typecheck # tsc --noEmit
npm test # vitest (hermetic, mocked network)
npm run smoke # spawn the built server and exercise every tool liveDev watch: npm run dev.
src/engine.ts— the network engine. Language-agnostic: returns i18n keys, not text. Every check is individually resilient andrunChecksnever throws.src/i18n.ts— es/en dictionaries andt().src/index.ts— the MCP server: renders engine keys into the requested language and exposes the three tools.
See CONTRIBUTING.md for the PR flow.
License
GPL-3.0-or-later © Oksigenia SL
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- 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/OksigeniaSL/checker-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server