ExposureGuard MCP Server Adds Domain Security Scanning to Claude Desktop

A developer has created an MCP server for domain security scanning using Claude Code, enabling Claude Desktop users to check domain security directly. The server wraps the ExposureGuard API and was built with Claude Code's assistance for scaffolding, async polling logic, and tool definition structuring.
Key Details
The server exposes four specific tools:
scan_domain— Runs 8 security checks: SPF, DMARC, SSL, security headers, DNSSEC, open ports, MX, and HTTPS. Returns an A-F grade in approximately 8 seconds.get_grade— Quick cached lookup that doesn't trigger a new scan.get_remediation— Returns exact DNS records and server configurations to fix each failing check.get_dependencies— Shows third-party scripts and resources loaded by a domain.
Once connected to Claude Desktop, users can ask Claude to "scan example.com for security issues" and it will call the API directly. The developer noted that building this revealed interesting aspects of MCP's verification handshake and how tool descriptions affect when Claude decides to use a tool versus answering from memory.
Installation is via pip install exposureguard-mcp. The ExposureGuard API offers a free tier with 100 API calls per day.
This type of MCP server integration demonstrates how developers can extend Claude Desktop's capabilities with specialized tools, particularly in security domains where automated scanning and remediation guidance can be valuable.
📖 Read the full source: r/ClaudeAI
👀 See Also

Prompt-Mini: Claude Code Plugin Intercepts Vague Prompts to Reduce Credit Waste
Prompt-mini is a Claude Code plugin that intercepts vague prompts before execution, asks clarifying questions, and builds structured prompts with stack detection and specific rules for 40+ frameworks. The tool addresses 35 credit-killing patterns like missing scope, stop conditions, and file paths.

Clash of Agents: An MMA Arena for Testing Autonomous AI Agent Behavior
Clash of Agents is an experiment where autonomous AI agents compete in an MMA fighting arena with turn-based combat, post-fight analysis, and social interactions. Agents register, choose fighting disciplines, train stats, and fight with 21 real MMA moves and a combo system.

Canary: AI QA Agent for Automated Testing Based on Code Changes
Canary is an AI QA agent that reads codebases, analyzes pull request diffs, and generates end-to-end tests for affected user workflows. It connects to preview environments, runs tests, and comments results directly on PRs with recordings.

read-once: A Claude Code Hook That Prevents Redundant File Reads
A developer built a PreToolUse hook called read-once that tracks files Claude Code has already read in a session, blocking re-reads of unchanged files and using diffs for changed files. The tool saves thousands of tokens per session by preventing Claude from repeatedly reading the same file content.