{"id":49109659,"url":"https://github.com/ExposureGuard/exposureguard-mcp","last_synced_at":"2026-05-07T10:00:56.928Z","repository":{"id":348330477,"uuid":"1195328452","full_name":"ExposureGuard/exposureguard-mcp","owner":"ExposureGuard","description":"MCP server for ExposureGuard — scan any domain for SPF, DMARC, SSL, security headers, DNSSEC, open ports, and more. Get A–F grades with fix snippets.","archived":false,"fork":false,"pushed_at":"2026-04-18T14:25:29.000Z","size":34,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-04-19T00:30:56.694Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://getexposureguard.com","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ExposureGuard.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-03-29T14:37:46.000Z","updated_at":"2026-04-18T14:25:32.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/ExposureGuard/exposureguard-mcp","commit_stats":null,"previous_names":["exposureguard/exposureguard-mcp"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/ExposureGuard/exposureguard-mcp","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ExposureGuard%2Fexposureguard-mcp","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ExposureGuard%2Fexposureguard-mcp/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ExposureGuard%2Fexposureguard-mcp/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ExposureGuard%2Fexposureguard-mcp/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ExposureGuard","download_url":"https://codeload.github.com/ExposureGuard/exposureguard-mcp/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ExposureGuard%2Fexposureguard-mcp/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32732349,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-07T02:14:30.463Z","status":"ssl_error","status_checked_at":"2026-05-07T02:14:29.405Z","response_time":62,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2026-04-21T04:00:25.541Z","updated_at":"2026-05-07T10:00:56.922Z","avatar_url":"https://github.com/ExposureGuard.png","language":"Python","funding_links":[],"categories":["Cloud Infrastructure","MCP Servers","📦 Other"],"sub_categories":["🔒 Security"],"readme":"\u003c!-- mcp-name: io.github.ExposureGuard/exposureguard-mcp --\u003e\n# ExposureGuard MCP Server\n\nAn [MCP (Model Context Protocol)](https://modelcontextprotocol.io) server that connects AI assistants to the [ExposureGuard](https://getexposureguard.com) domain security scanning API.\n\n## Tools\n\n| Tool | Description |\n|------|-------------|\n| `scan_domain` | Full security scan — 8 checks, A-F grade, score, findings, report URL (~8s) |\n| `get_grade` | Cached grade lookup (up to 24h old) — fast, no new scan triggered |\n| `get_remediation` | Copy-paste fix snippets for all failing checks |\n| `get_dependencies` | Third-party scripts/resources loaded by the domain |\n\n## Setup\n\n### 1. Get an API Key\n\nSign up at [getexposureguard.com](https://getexposureguard.com) and grab your API key from the [dashboard](https://getexposureguard.com/dashboard/api-keys).\n\n### 2. Install\n\n```bash\n# Option A: pip install (recommended)\npip install -e /path/to/exposureguard-mcp\n\n# Option B: just install deps\npip install mcp httpx\n```\n\n### 3. Configure Your AI Client\n\n#### Claude Desktop\n\nEdit `~/Library/Application Support/Claude/claude_desktop_config.json` (macOS) or `%APPDATA%\\Claude\\claude_desktop_config.json` (Windows):\n\n```json\n{\n  \"mcpServers\": {\n    \"exposureguard\": {\n      \"command\": \"python\",\n      \"args\": [\"-m\", \"exposureguard_mcp.server\"],\n      \"env\": {\n        \"EXPOSUREGUARD_API_KEY\": \"your-api-key-here\"\n      }\n    }\n  }\n}\n```\n\nIf you installed as a package, you can also use:\n\n```json\n{\n  \"mcpServers\": {\n    \"exposureguard\": {\n      \"command\": \"exposureguard-mcp\",\n      \"env\": {\n        \"EXPOSUREGUARD_API_KEY\": \"your-api-key-here\"\n      }\n    }\n  }\n}\n```\n\n#### Cursor\n\nEdit `.cursor/mcp.json` in your project root (or globally at `~/.cursor/mcp.json`):\n\n```json\n{\n  \"mcpServers\": {\n    \"exposureguard\": {\n      \"command\": \"python\",\n      \"args\": [\"-m\", \"exposureguard_mcp.server\"],\n      \"env\": {\n        \"EXPOSUREGUARD_API_KEY\": \"your-api-key-here\"\n      }\n    }\n  }\n}\n```\n\n#### Windsurf\n\nEdit `~/.codeium/windsurf/mcp_config.json`:\n\n```json\n{\n  \"mcpServers\": {\n    \"exposureguard\": {\n      \"command\": \"python\",\n      \"args\": [\"-m\", \"exposureguard_mcp.server\"],\n      \"env\": {\n        \"EXPOSUREGUARD_API_KEY\": \"your-api-key-here\"\n      }\n    }\n  }\n}\n```\n\n#### VS Code (Copilot)\n\nEdit `.vscode/mcp.json` in your project:\n\n```json\n{\n  \"servers\": {\n    \"exposureguard\": {\n      \"type\": \"stdio\",\n      \"command\": \"python\",\n      \"args\": [\"-m\", \"exposureguard_mcp.server\"],\n      \"env\": {\n        \"EXPOSUREGUARD_API_KEY\": \"your-api-key-here\"\n      }\n    }\n  }\n}\n```\n\n### 4. Usage Examples\n\nOnce connected, ask your AI assistant:\n\n- \"Scan example.com for security issues\"\n- \"What's the security grade for cloudflare.com?\"\n- \"Show me how to fix the security issues on my-site.com\"\n- \"What third-party scripts does shopify.com load?\"\n\n## Running Standalone\n\n```bash\nexport EXPOSUREGUARD_API_KEY=your-api-key-here\npython -m exposureguard_mcp.server\n```\n\nThe server communicates over stdio using the MCP protocol — it's designed to be launched by an MCP client, not used interactively.\n\n## Rate Limits\n\nRate limits depend on your ExposureGuard plan. If you hit a 429 response, the server will return a message suggesting you upgrade at [getexposureguard.com/pricing](https://getexposureguard.com/pricing).\n\n## Publishing\n\n### PyPI\n```bash\npip install build twine\npython -m build\ntwine upload dist/*\n```\nThen users install with: `pip install exposureguard-mcp`\n\n### npm\n```bash\nnpm publish\n```\nThen users install with: `npx exposureguard-mcp`\n\n## License\n\nMIT\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FExposureGuard%2Fexposureguard-mcp","html_url":"https://awesome.ecosyste.ms/projects/github.com%2FExposureGuard%2Fexposureguard-mcp","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FExposureGuard%2Fexposureguard-mcp/lists"}