Token导航 LogoToken导航TokenDH.com
Exposureguard MCP logo
安全风控stdio官方级别未说明来源级核验

Exposureguard MCP

MCP Server

一个连接AI助手与ExposureGuard域名安全扫描API的MCP服务器,提供全面的安全扫描、等级查询、修复建议和依赖分析功能。

工具数

4

提示词数

0

GitHub Stars

0

资源数

0
安全PythonClaudeAPI集成ClaudeCursorWindsurf

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

作者 / 组织

ExposureGuard

提供方

ExposureGuard

最后核验

2026/5/17 20:23

快速接入

先看主来源和安装命令,再打开仓库或文档;下面只保留这个条目的关键接入事实。

命令预览

pip install -e /path/to/exposureguard-mcp

详细介绍

ExposureGuard MCP服务器

MCP(模型上下文协议) 将AI助手连接到 ExposureGuard 域安全扫描API。

工具

工具说明
scan_domain全面安全扫描——8次检查、A-F级、分数、发现、报告URL(~8s)
get_grade缓存成绩查找(最长24小时)-快速,无新扫描触发
get_remediation复制粘贴所有失败检查的修复片段
get_dependencies域加载的第三方脚本/资源

设置

1.获取API密钥

注册地址: getexposureguard.com仪表盘.

2.安装

# Option A: pip install (recommended)
pip install -e /path/to/exposureguard-mcp

# Option B: just install deps
pip install mcp httpx

3.配置您的AI客户端

克劳德桌面

编辑 ~/Library/Application Support/Claude/claude_desktop_config.json (macOS)或 %APPDATA%\Claude\claude_desktop_config.json (Windows):

{
  "mcpServers": {
    "exposureguard": {
      "command": "python",
      "args": ["-m", "exposureguard_mcp.server"],
      "env": {
        "EXPOSUREGUARD_API_KEY": "your-api-key-here"
      }
    }
  }
}

如果您是作为软件包安装的,您还可以使用:

{
  "mcpServers": {
    "exposureguard": {
      "command": "exposureguard-mcp",
      "env": {
        "EXPOSUREGUARD_API_KEY": "your-api-key-here"
      }
    }
  }
}

光标

编辑 .cursor/mcp.json 在您的项目根目录中(或全局位于 ~/.cursor/mcp.json):

{
  "mcpServers": {
    "exposureguard": {
      "command": "python",
      "args": ["-m", "exposureguard_mcp.server"],
      "env": {
        "EXPOSUREGUARD_API_KEY": "your-api-key-here"
      }
    }
  }
}

帆板运动

编辑 ~/.codeium/windsurf/mcp_config.json:

{
  "mcpServers": {
    "exposureguard": {
      "command": "python",
      "args": ["-m", "exposureguard_mcp.server"],
      "env": {
        "EXPOSUREGUARD_API_KEY": "your-api-key-here"
      }
    }
  }
}

VS代码(副本)

编辑 .vscode/mcp.json 在您的项目中:

{
  "servers": {
    "exposureguard": {
      "type": "stdio",
      "command": "python",
      "args": ["-m", "exposureguard_mcp.server"],
      "env": {
        "EXPOSUREGUARD_API_KEY": "your-api-key-here"
      }
    }
  }
}

4.使用示例

连接后,询问您的AI助手:

  • “扫描example.com查看安全问题”
  • “cloudflare.com的安全等级是多少?”
  • “演示如何修复我的site.com上的安全问题”
  • “shopify.com加载哪些第三方脚本?”

独立运行

export EXPOSUREGUARD_API_KEY=your-api-key-here
python -m exposureguard_mcp.server

服务器使用MCP协议通过stdio进行通信——它被设计为由MCP客户端启动,而不是交互式使用。

速率限制

费率限制取决于您的ExposureGuard计划。如果你点击429响应,服务器将返回一条消息,建议你在 getexposureguard.com/pricing.

出版

PyPI

pip install build twine
python -m build
twine upload dist/*

然后用户安装: pip install exposureguard-mcp

npm

npm publish

然后用户安装: npx exposureguard-mcp

许可证

麻省理工学院

目录标签

目录标签

安全PythonClaudeAPI集成域名安全本地部署AI集成安全扫描API连接MCP协议

支持客户端

ClaudeCursorWindsurf

接入字段

传输方式(transport,传输协议)

stdio

鉴权方式(authType,认证方式)

none

工具数量(toolCount,工具数)

4

资源数量(resourceCount,资源数)

0

提示词数量(promptCount,提示词数)

0

权限和风险

stdionone部署方式未说明

接入前请确认传输方式、认证方式和部署位置,并根据实际工具能力限制访问范围。

安装前确认

不要直接授予不必要的文件、网络或账号权限;先核对安装命令和配置内容。

来源信息

继续浏览同类 MCP