BBOT安全扫描服务器
可用工具 (8 个)
该服务在 MCP 协议中暴露的工具,AI 可按需调用
list_bbot_modules
该工具无需必填参数,直接调用即可
list_bbot_presets
该工具无需必填参数,直接调用即可
start_bbot_scan 5 个参数 需填 1 项
必填参数:targets
get_scan_status 1 个参数 需填 1 项
必填参数:scan_id
get_scan_results 2 个参数 需填 1 项
必填参数:scan_id
list_active_scans
该工具无需必填参数,直接调用即可
wait_for_scan_completion 4 个参数 需填 1 项
必填参数:scan_id
get_dependency_info
该工具无需必填参数,直接调用即可
服务介绍
BBOT安全扫描服务器 bbot
BBOT MCP服务器是一个用于管理和执行BBOT安全扫描的工具,提供模块管理、预设配置、实时监控等功能。
null## 工具列表 Tool List
本MCP服务封装下列工具,可让模型通过标准化接口调用以下功能。 本MCP服务封装下列工具,可让模型通过标准化接口调用以下功能。
| 工具 Tool | 描述 Description |
|---|---|
| list_bbot_modules | List all available bbot modules |
| list_bbot_presets | List all available bbot presets |
| start_bbot_scan | Start a new bbot scan Args: targets: Comma-separated list of targets (domains, IPs, URLs) modules: Comma-separated list of modules to use (optional) presets: Comma-separated list of presets to use (optional) flags: Comma-separated list of flags to use (optional) no_deps: Disable dependency installation to prevent sudo prompts (default: True) |
| get_scan_status | Get the status of a specific scan |
| get_scan_results | Get results from a specific scan Args: scan_id: The ID of the scan limit: Maximum number of results to return (default: 100) |
| list_active_scans | List all active scans |
| wait_for_scan_completion | Wait for a scan to complete with timeout and progress reporting Args: scan_id: The ID of the scan to wait for timeout: Maximum time to wait in seconds (default: 300 = 5 minutes) poll_interval: How often to check scan status in seconds (default: 5) include_progress: Whether to include progress updates in the response (default: True) |
| get_dependency_info | Get information about dependency management in bbot scans |
检查服务 ## Inspector
工具在线测试: https://mcp.xiaobenyang.com/inspector/1777419071520771
Online Tool test https://mcp.xiaobenyang.com/inspector/1777419071520771
服务配置 MCP Server Config
如何获取 XBY-APIKEY ? How to get XBY-APIKEY ?
访问小笨羊科技网站 https://xiaobenyang.com,注册用户即可获得APIKEY
Visit XiaoBenYang website https://xiaobenyang.com, register and get the APIKEY.
SSE
{
"mcpServers": {
"BBOT安全扫描服务器": {
"headers": {
"XBY-APIKEY": "<YOUR_XBY_APIKEY>"
},
"type": "sse",
"url": "https://mcp.xiaobenyang.com/1777419071520771/sse"
}
}
}
STREAMABLE HTTP
{
"mcpServers": {
"BBOT安全扫描服务器": {
"headers": {
"XBY-APIKEY": "<YOUR_XBY_APIKEY>"
},
"type": "streamable_http",
"url": "https://mcp.xiaobenyang.com/1777419071520771/mcp"
}
}
}
STDIO
{
"mcpServers": {
"BBOT安全扫描服务器": {
"command": "npx",
"args": [
"-y",
"xiaobenyang-mcp"
],
"env": {
"XBY_APIKEY": "<YOUR_XBY_APIKEY>",
"mcpId": "1777419071520771",
},
"transport": "stdio"
}
}
}