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

Browser Harness: Giving LLMs raw CDP access to self-correct browser tasks
Browser Harness strips away browser frameworks, giving LLMs direct CDP websocket access and letting them write missing tools mid-task. Demonstrated by self-inventing an upload_file() function.
Ant Group's AntLing-3.0-flash Hits OpenClaw via OpenRouter – 256K Context, Free Through Aug 3
AntLing-3.0-flash from Ant Group is now available on OpenClaw via OpenRouter. No client update needed; configure with openclaw models set openrouter/inclusionai/ling-3.0-flash. Features 256K context and RL training on long-horizon tool calling. Free through Aug 3 (API-only, no weights).

Local-First Movie Recap Pipeline Using Whisper + CLIP + Ollama
A fully local pipeline that auto-generates narrated movie recap videos using Whisper, CLIP, Ollama, Edge TTS, and FFmpeg. Drop in a movie file, get a narrated recap in ~15 minutes.

Claude Code Container Provides Zero-Config Docker Isolation for Claude Code
Claude Code Container (ccc) is a free, open-source tool that automatically creates per-project Docker containers for Claude Code with full isolation and zero configuration. It forwards host environment variables, mounts SSH keys, provides transparent localhost proxy, and includes Chromium with chrome-devtools MCP pre-configured.