.fyi
SkillsMCPPluginsSubagents

Browse by category

DevOps & CI/CD SkillsProductivity & Workflow SkillsOther SkillsProduct & Project Management SkillsDocumentation & Knowledge SkillsCode Review & Refactor SkillsBackend & APIs SkillsAgent Meta & Communication SkillsResearch SkillsSecurity SkillsUX UI & Design SkillsTesting & QA SkillsSee all →

Every Claude Code skill, MCP server, plugin and subagent in one directory. Searchable, comparable, and one command from installed. Live stats from GitHub, npm and PyPI.

We're on Product HuntYour agent's app storeCheck it out →
Agent SkillsMCP ServersPluginsSubagentsCoding Agents
CollectionsOfficial publishersGlossaryFAQBlogSearchSavedFeedback
PrivacyTermsllms.txtSitemap

made with ♥ · © 2026 aaaa.fyi

Independent project · real data from public registries

…/gh05tcrew/pentestagent
home/mcp-servers/gh05tcrew/pentestagent
gh05tcrew avatar

pentestagent

bygh05tcrew· 1 MCP server

Stars

2.8k

Forks

565

Category

Security

View on GitHub

TL;DR

AI penetration testing

How to install pentestagent?

gh05tcrew/pentestagent
$git clone https://github.com/gh05tcrew/pentestagent

Installs into the current project.

›Prefer a prompt? Paste this to your agent

Install & use

Install pentestagent by running `git clone https://github.com/gh05tcrew/pentestagent`, then use it for the current task and follow its documentation at https://github.com/gh05tcrew/pentestagent.

Files · 1

View on GitHub
README.md
1<div align="center">
2 
3<img src="assets/pentestagent-logo.png" alt="PentestAgent Logo" width="220" style="margin-bottom: 20px;"/>
4 
5# PentestAgent
6### AI Penetration Testing
7 
8[![Python](https://img.shields.io/badge/Python-3.10%2B-blue.svg)](https://www.python.org/) [![License](https://img.shields.io/badge/License-MIT-green.svg)](LICENSE.txt) [![Version](https://img.shields.io/badge/Version-0.2.0-orange.svg)](https://github.com/GH05TCREW/pentestagent/releases) [![Security](https://img.shields.io/badge/Security-Penetration%20Testing-red.svg)](https://github.com/GH05TCREW/pentestagent) [![MCP](https://img.shields.io/badge/MCP-Compatible-purple.svg)](https://github.com/GH05TCREW/pentestagent)
9 
10</div>
11 
12https://github.com/user-attachments/assets/a67db2b5-672a-43df-b709-149c8eaee975
13 
14## Requirements
15 
16- Python 3.10+
17- API key for OpenAI, Anthropic, or other LiteLLM-supported provider
18 
19## Install
20 
21```bash
22# Clone
23git clone https://github.com/GH05TCREW/pentestagent.git
24cd pentestagent
25 
26# Setup (creates venv, installs deps)
27.\scripts\setup.ps1 # Windows
28./scripts/setup.sh # Linux/macOS
29 
30# Or manual
31python -m venv venv
32.\venv\Scripts\Activate.ps1 # Windows
33source venv/bin/activate # Linux/macOS
34pip install -e ".[all]"
35playwright install chromium # Required for browser tool
36```
37 
38## Configure
39 
40Create `.env` in the project root:
41 
42```
43ANTHROPIC_API_KEY=sk-ant-...
44PENTESTAGENT_MODEL=claude-sonnet-4-20250514
45```
46 
47Or for OpenAI:
48 
49```
50OPENAI_API_KEY=sk-...
51PENTESTAGENT_MODEL=gpt-5
52```
53 
54Any [LiteLLM-supported model](https://docs.litellm.ai/docs/providers) works.
55 
56### Using a relay / custom API base
57 
58Point PentestAgent at any OpenAI-compatible endpoint via `OPENAI_API_BASE`:
59 
60```bash
61OPENAI_API_KEY=your-relay-token
62OPENAI_API_BASE=https://relay.example/v1
63PENTESTAGENT_MODEL=openai/<model-name-on-your-relay>
64```
65 
66For Anthropic-compatible endpoints use `ANTHROPIC_API_BASE` instead.
67See `.env.example` for full provider notes and embedding options.
68 
69## Run
70 
71```bash
72pentestagent # Launch TUI
73pentestagent -t 192.168.1.1 # Launch with target
74pentestagent tui --docker # Run tools in Docker container
75```
76 
77## Docker
78 
79Run tools inside a Docker container for isolation and pre-installed pentesting tools.
80 
81### Option 1: Pull pre-built image (fastest)
82 
83```bash
84# Base image with nmap, netcat, curl
85docker run -it --rm \
86 -e ANTHROPIC_API_KEY=your-key \
87 -e PENTESTAGENT_MODEL=claude-sonnet-4-20250514 \
88 ghcr.io/gh05tcrew/pentestagent:latest
89 
90# Kali image with metasploit, sqlmap, hydra, etc.
91docker run -it --rm \
92 -e ANTHROPIC_API_KEY=your-key \
93 ghcr.io/gh05tcrew/pentestagent:kali
94```
95 
96### Option 2: Build locally
97 
98```bash
99# Build
100docker compose build
101 
102# Run
103docker compose run --rm pentestagent
104 
105# Or with Kali
106docker compose --profile kali build
107docker compose --profile kali run --rm pentestagent-kali
108```
109 
110The container runs PentestAgent with access to Linux pentesting tools. The agent can use `nmap`, `msfconsole`, `sqlmap`, etc. directly via the terminal tool.
111 
112Requires Docker to be installed and running.
113 
114## Modes
115 
116PentestAgent has three modes, accessible via commands in the TUI:
117 
118| Mode | Command | Description |
119|------|---------|-------------|
120| Assist | `/assist <task>` | One single-shot instruction, with tool execution |
121| Agent | `/agent <task>` | Autonomous execution of a single task |
122| Crew | `/crew <task>` | Multi-agent mode. Orchestrator spawns specialized workers |
123| Interact | `/interact <task>` | Interactive mode. Chat with the agent, it will help you and guide during the pentesting procedure |
124 
125### TUI Commands
126 
127```
128/assist <task> One single-shot instruction.
129/agent <task> Run autonomous agent on task
130/crew <task> Run multi-agent crew on task
131/interact <task> Chat with the agent in guided mode
132/target <host> Set target
133/tools List available tools
134/notes Show saved notes
135/report Generate report from session
136/memory Show token/memory usage
137/prompt

Preview

gh05tcrew/pentestagentgh05tcrew/pentestagent
Repogh05tcrew/pentestagent
TypeMCP Servers
CategorySecurity
UpdatedJul 2026
LicenseMIT
First seenJul 27, 2026

Tags

MCP

Related

6 picks
Type
  1. cisco-ai-defense avatarmcp-scannerA tool to scan MCP servers and tools for security findingsMCP ServersJul 2026124k994
  2. hashgraph-online avatarhol-guardOpen-source antivirus and runtime protection for AI agents, tools, MCP servers, plugins, skills, and package installs.MCP ServersJul 202664k419
  3. snyk avataragent-scanAgent supply chain security scanner.MCP ServersJul 202659k2.8k
  4. crowdstrike avatarfalcon-mcpConnects AI agents with CrowdStrike Falcon for security analysis and automation.MCP ServersJul 202623k226
  5. mcp-auth avatarpythonPlug-and-play auth for Python MCP servers.MCP ServersAug 202520k58
  6. auth0 avatarauth0-mcp-serverAuth0 MCP Server: Manage Auth0 applications, APIs, actions, logs, and forms using natural languageMCP ServersJul 202616k112