MCP Catalogs
首页

pentest-mcp-server vs sequentialthinking

并排对比,帮你在这两个 MCP server 之间做选择。

pentest-mcp-server
by LayeSec006
sequentialthinking
by modelcontextprotocol
Stars★ 18★ 85,748
30天用量
综合分4075
官方
分类
安全开发者工具运维基建
AI / LLM 工具开发者工具效率工具
实现语言PythonTypeScript
最近提交7 个月前本月

pentest-mcp-server · 概述

一个生产就绪的 MCP 服务器,通过 SSH 和持久化 tmux 会话,使 AI 代理能够在 Linux 系统上执行自主渗透测试。

sequentialthinking · 概述

Sequential Thinking MCP 服务器通过逐步推理支持动态问题解决。

pentest-mcp-server · 使用场景

  • 使用多步侦察和漏洞利用的自动化红队操作
  • 使用交互式工具和长时间运行的操作解决 CTF 挑战
  • 持久化漏洞评估流程的安全研究

sequentialthinking · 使用场景

  • 规划复杂系统迁移并进行风险评估
  • 需要逐步分析的调试生产环境问题
  • 比较具有条件分支的架构选项

pentest-mcp-server · 安装

安装

  1. 克隆并安装包:
git clone https://github.com/LayeSec006/pentest-mcp-server.git
cd pentest-mcp-server
pip install -e .
  1. 配置目标系统:
cp .env.example .env
# 编辑 .env 文件,添加您的目标系统详细信息
  1. 在目标系统上安装 tmux:
ssh kali@<目标主机>
sudo apt update && sudo apt install tmux  # 用于 Debian/Ubuntu/Kali
sudo pacman -S tmux  # 用于 Arch/BlackArch
sudo dnf install tmux  # 用于 Fedora
exit
  1. 测试安装:
python -m pytest tests/ -v

Claude Desktop 集成

添加到您的 Claude Desktop 配置中:

{
  "mcpServers": {
    "pentest-mcp": {
      "command": "python",
      "args": ["-m", "pentest_mcp_server"],
      "env": {
        "TARGET_HOST": "192.168.1.100",
        "TARGET_USER": "kali",
        "TARGET_PASSWORD": "your_password"
      }
    }
  }
}

sequentialthinking · 安装

安装

**Claude Desktop**: 添加到您的 claude_desktop_config.json 文件中:

{
  "mcpServers": {
    "sequential-thinking": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-sequential-thinking"
      ]
    }
  }
}

**VS Code**: 使用安装按钮或手动配置:

{
  "servers": {
    "sequential-thinking": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-sequential-thinking"
      ]
    }
  }
}

**Docker**:

{
  "mcpServers": {
    "sequentialthinking": {
      "command": "docker",
      "args": [
        "run",
        "--rm",
        "-i",
        "mcp/sequentialthinking"
      ]
    }
  }
}
对比内容由 README + GitHub 公开数据自动生成,定期更新。