Back to MCP directory
publicPublicdnsLocal runtime

intruder-mcp

Intruder MCP是一个允许MCP客户端控制Intruder安全扫描工具的服务,支持通过smithery平台、本地Python环境或Docker容器运行。

article

README

🚀 Intruder MCP

本项目允许像Claude和Cursor这样的MCP客户端控制Intruder。如需更多信息和使用案例示例,请查看我们的博客文章

🚀 快速开始

📦 安装指南

有三种方式可以使用MCP服务器:

  • 通过smithery
  • 在本地机器上使用Python运行
  • 在Docker容器中运行

所有这些方法都需要你提供一个Intruder API密钥。要生成密钥,请查看文档

通过smithery

按照smithery上的说明操作。

本地运行

如果尚未安装uv,请先进行安装,然后克隆此仓库,并在根目录下运行以下命令:

uv venv
uv pip install -e .

然后,将以下内容添加到你的MCP客户端配置中,确保填写你的API密钥,并更新克隆此仓库的路径:

{
  "mcpServers": {
    "intruder": {
      "command": "uv",
      "args": [
        "--directory",
        "path/to/intruder-mcp/intruder_mcp",
        "run",
        "server.py"
      ],
      "env": {
        "INTRUDER_API_KEY": "your-api-key"
      }
    }
  }
}

在容器中运行

将以下内容添加到你的MCP客户端配置中,确保填写你的API密钥:

{
  "mcpServers": {
    "intruder": {
      "command": "docker",
      "args": [
        "container",
        "run",
        "--interactive",
        "--rm",
        "--init",
        "--env",
        "INTRUDER_API_KEY=<your-api-key>",
        "ghcr.io/intruder-io/intruder-mcp"
      ]
    }
  }
}
help

Runtime guide

cloud

Hosted runtime

Hosted servers run from a provider-managed environment. You usually connect the MCP client to the hosted endpoint or follow the provider's authorization flow, without keeping a local process alive

  1. Open provider connection page
  2. Authorize or copy endpoint
  3. Connect from your MCP client
terminal

Local runtime / other methods

Local servers run on your own machine or infrastructure. You normally copy the server_config into your MCP client, install the required package, and provide env variables from env_schema when needed

  1. Copy server_config
  2. Install required package
  3. Fill env variables and restart client