SecPipe

SecPipe

Enables AI agents to orchestrate security research workflows by connecting to containerized security tools via MCP, allowing automated vulnerability analysis and pipeline execution.

Category
访问服务器

README

<h1 align="center">SecPipe</h1> <h3 align="center">AI-Powered Security Research Orchestration via MCP</h3>

<p align="center"> <a href="https://discord.gg/8XEX33UUwZ"><img src="https://img.shields.io/discord/1420767905255133267?logo=discord&label=Discord" alt="Discord"></a> <a href="LICENSE"><img src="https://img.shields.io/badge/license-BSL%201.1-blue" alt="License: BSL 1.1"></a> <a href="https://www.python.org/downloads/"><img src="https://img.shields.io/badge/python-3.12%2B-blue" alt="Python 3.12+"/></a> <a href="https://modelcontextprotocol.io"><img src="https://img.shields.io/badge/MCP-compatible-green" alt="MCP Compatible"/></a> </p>

<p align="center"> <strong>Let AI agents orchestrate your security research workflows locally</strong> </p>

<p align="center"> <sub> <a href="#-overview"><b>Overview</b></a> • <a href="#-features"><b>Features</b></a> • <a href="#-mcp-security-hub"><b>Security Hub</b></a> • <a href="#-installation"><b>Installation</b></a> • <a href="USAGE.md"><b>Usage Guide</b></a> • <a href="#-contributing"><b>Contributing</b></a> </sub> </p>


🚧 SecPipe AI is under active development. Expect breaking changes and new features!


🚀 Overview

SecPipe AI is an open-source MCP server that enables AI agents (GitHub Copilot, Claude, etc.) to orchestrate security research workflows through the Model Context Protocol (MCP).

SecPipe connects your AI assistant to MCP tool hubs — collections of containerized security tools that the agent can discover, chain, and execute autonomously. Instead of manually running security tools, describe what you want and let your AI assistant handle it.

The Core: Hub Architecture

SecPipe acts as a meta-MCP server — a single MCP endpoint that gives your AI agent access to tools from multiple MCP hub servers. Each hub server is a containerized security tool (Binwalk, YARA, Radare2, Nmap, etc.) that the agent can discover at runtime.

  • 🔍 Discovery: The agent lists available hub servers and discovers their tools
  • 🤖 AI-Native: Hub tools provide agent context — usage tips, workflow guidance, and domain knowledge
  • 🔗 Composable: Chain tools from different hubs into automated pipelines
  • 📦 Extensible: Add your own MCP servers to the hub registry

🎬 Use Case: Firmware Vulnerability Research

Scenario: Analyze a firmware image to find security vulnerabilities — fully automated by an AI agent.

User: "Search for vulnerabilities in firmware.bin"

Agent → Binwalk:  Extract filesystem from firmware image
Agent → YARA:     Scan extracted files for vulnerability patterns
Agent → Radare2:  Trace dangerous function calls in prioritized binaries
Agent → Report:   8 vulnerabilities found (2 critical, 4 high, 2 medium)

🎬 Use Case: Rust Fuzzing Pipeline

Scenario: Fuzz a Rust crate to discover vulnerabilities using AI-assisted harness generation and parallel fuzzing.

User: "Fuzz the blurhash crate for vulnerabilities"

Agent → Rust Analyzer:  Identify fuzzable functions and attack surface
Agent → Harness Gen:    Generate and validate fuzzing harnesses
Agent → Cargo Fuzzer:   Run parallel coverage-guided fuzzing sessions
Agent → Crash Analysis:  Deduplicate and triage discovered crashes

⭐ Support the Project

If you find SecPipe useful, please star the repo to support development! 🚀

<a href="https://github.com/FuzzingLabs/secpipe_ai/stargazers"> <img src="https://img.shields.io/github/stars/FuzzingLabs/secpipe_ai?style=social" alt="GitHub Stars"> </a>


✨ Features

Feature Description
🤖 AI-Native Built for MCP — works with GitHub Copilot, Claude, and any MCP-compatible agent
🔌 Hub System Connect to MCP tool hubs — each hub brings dozens of containerized security tools
🔍 Tool Discovery Agents discover available tools at runtime with built-in usage guidance
🔗 Pipelines Chain tools from different hubs into automated multi-step workflows
🔄 Persistent Sessions Long-running tools (Radare2, fuzzers) with stateful container sessions
🏠 Local First All execution happens on your machine — no cloud required
🔒 Sandboxed Every tool runs in an isolated container via Docker or Podman

🏗️ Architecture

┌─────────────────────────────────────────────────────────────────┐
│                     AI Agent (Copilot/Claude)                   │
└───────────────────────────┬─────────────────────────────────────┘
                            │ MCP Protocol (stdio)
                            ▼
┌─────────────────────────────────────────────────────────────────┐
│                     SecPipe MCP Server                           │
│                                                                 │
│  Projects          Hub Discovery         Hub Execution          │
│  ┌──────────────┐  ┌──────────────────┐  ┌───────────────────┐  │
│  │init_project  │  │list_hub_servers  │  │execute_hub_tool   │  │
│  │set_assets    │  │discover_hub_tools│  │start_hub_server   │  │
│  │list_results  │  │get_tool_schema   │  │stop_hub_server    │  │
│  └──────────────┘  └──────────────────┘  └───────────────────┘  │
└───────────────────────────┬─────────────────────────────────────┘
                            │ Docker/Podman
                            ▼
┌─────────────────────────────────────────────────────────────────┐
│                     MCP Hub Servers                             │
│                                                                 │
│  ┌───────────┐  ┌───────────┐  ┌───────────┐  ┌───────────┐   │
│  │ Binwalk   │  │   YARA    │  │ Radare2   │  │   Nmap    │   │
│  │  6 tools  │  │  5 tools  │  │ 32 tools  │  │  8 tools  │   │
│  └───────────┘  └───────────┘  └───────────┘  └───────────┘   │
│  ┌───────────┐  ┌───────────┐  ┌───────────┐  ┌───────────┐   │
│  │ Nuclei    │  │  SQLMap   │  │  Trivy    │  │   ...     │   │
│  │  7 tools  │  │  8 tools  │  │  7 tools  │  │  36 hubs  │   │
│  └───────────┘  └───────────┘  └───────────┘  └───────────┘   │
└─────────────────────────────────────────────────────────────────┘

🔧 MCP Security Hub

SecPipe ships with built-in support for the MCP Security Hub — a collection of 36 production-ready, Dockerized MCP servers covering offensive security:

Category Servers Examples
🔍 Reconnaissance 8 Nmap, Masscan, Shodan, WhatWeb
🌐 Web Security 6 Nuclei, SQLMap, ffuf, Nikto
🔬 Binary Analysis 6 Radare2, Binwalk, YARA, Capa, Ghidra
⛓️ Blockchain 3 Medusa, Solazy, DAML Viewer
☁️ Cloud Security 3 Trivy, Prowler, RoadRecon
💻 Code Security 1 Semgrep
🔑 Secrets Detection 1 Gitleaks
💥 Exploitation 1 SearchSploit
🎯 Fuzzing 2 Boofuzz, Dharma
🕵️ OSINT 2 Maigret, DNSTwist
🛡️ Threat Intel 2 VirusTotal, AlienVault OTX
🏰 Active Directory 1 BloodHound

185+ individual tools accessible through a single MCP connection.

The hub is open source and can be extended with your own MCP servers. See the mcp-security-hub repository for details.


📦 Installation

Prerequisites

Quick Install

# Clone the repository
git clone https://github.com/FuzzingLabs/secpipe_ai.git
cd secpipe_ai

# Install dependencies
uv sync

Link the Security Hub

# Clone the MCP Security Hub
git clone https://github.com/FuzzingLabs/mcp-security-hub.git ~/.secpipe/hubs/mcp-security-hub

# Build the Docker images for the hub tools
./scripts/build-hub-images.sh

Or use the terminal UI (uv run secpipe ui) to link hubs interactively.

Configure MCP for Your AI Agent

# For GitHub Copilot
uv run secpipe mcp install copilot

# For Claude Code (CLI)
uv run secpipe mcp install claude-code

# For Claude Desktop (standalone app)
uv run secpipe mcp install claude-desktop

# Verify installation
uv run secpipe mcp status

Restart your editor and your AI agent will have access to SecPipe tools!


🧑‍💻 Usage

Once installed, just talk to your AI agent:

"What security tools are available?"
"Scan this firmware image for vulnerabilities"
"Analyze this binary with radare2"
"Run nuclei against https://example.com"

The agent will use SecPipe to discover the right hub tools, chain them into a pipeline, and return results — all without you touching a terminal.

See the Usage Guide for detailed setup and advanced workflows.


📁 Project Structure

secpipe_ai/
├── secpipe-mcp/           # MCP server — the core of SecPipe
├── secpipe-cli/           # Command-line interface & terminal UI
├── secpipe-common/        # Shared abstractions (containers, storage)
├── secpipe-runner/        # Container execution engine (Docker/Podman)
├── secpipe-tests/         # Integration tests
├── mcp-security-hub/        # Default hub: 36 offensive security MCP servers
└── scripts/                 # Hub image build scripts

🤝 Contributing

We welcome contributions from the community!

  • 🐛 Report bugs via GitHub Issues
  • 💡 Suggest features or improvements
  • 🔧 Submit pull requests
  • 🔌 Add new MCP servers to the Security Hub

See CONTRIBUTING.md for guidelines.


📄 License

BSL 1.1 - See LICENSE for details.


<p align="center"> <strong>Maintained by <a href="https://fuzzinglabs.com">FuzzingLabs</a></strong> <br> </p>

推荐服务器

Baidu Map

Baidu Map

百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。

官方
精选
JavaScript
Playwright MCP Server

Playwright MCP Server

一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。

官方
精选
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。

官方
精选
本地
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。

官方
精选
本地
TypeScript
VeyraX

VeyraX

一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。

官方
精选
本地
graphlit-mcp-server

graphlit-mcp-server

模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。

官方
精选
TypeScript
Kagi MCP Server

Kagi MCP Server

一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。

官方
精选
Python
e2b-mcp-server

e2b-mcp-server

使用 MCP 通过 e2b 运行代码。

官方
精选
Neon MCP Server

Neon MCP Server

用于与 Neon 管理 API 和数据库交互的 MCP 服务器

官方
精选
Exa MCP Server

Exa MCP Server

模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。

官方
精选