MCP Pentest
Provides vulnerability detection and exploitation capabilities for Apache web servers, including version fingerprinting and targeted security testing
Provides platform-specific exploitation modules and vulnerability assessment tools targeting Linux systems
Generates penetration testing reports and documentation in Markdown format for technical findings and remediation guidance
Integrates with Metasploit framework for automated exploit search, execution, and advanced penetration testing capabilities
Built on Node.js runtime to provide the core MCP server functionality for automated penetration testing workflows
Provides specialized vulnerability detection, version identification, and security testing capabilities for WordPress installations
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@MCP Pentestrun a full automated penetration test on example.com with active intensity"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
MCP Pentest - Automated Penetration Testing Framework
MCP (Model Context Protocol) server untuk automated penetration testing yang cerdas. Framework ini dapat secara otomatis melakukan reconnaissance, vulnerability scanning, dan controlled exploitation berdasarkan teknologi target yang terdeteksi.
š Features
š Reconnaissance Tools
Port Scanning - Comprehensive Nmap integration dengan berbagai scan modes
Subdomain Enumeration - Certificate transparency logs + DNS bruteforcing
Technology Detection - Automatic web technology fingerprinting
Directory Bruteforcing - Intelligent directory and file discovery
š”ļø Vulnerability Assessment
Nuclei Integration - Automated vulnerability scanning dengan template database
Nikto Scanning - Web server vulnerability detection
SQLMap Integration - SQL injection testing
Custom Web Vulnerability Checks - XSS, Directory Traversal, Command Injection, dll
ā” Exploitation Modules
Metasploit Integration - Automatic exploit search dan execution
Custom Exploit Attempts - Framework-specific exploitation
Technology-Specific Exploits - Targeted attacks berdasarkan tech stack
Proof-of-Concept Generation - Automated PoC creation
š¤ Intelligent Workflow Engine
Adaptive Decision Making - AI-driven next step recommendations
Risk-Based Prioritization - Smart vulnerability prioritization
Technology-Aware Testing - Customized testing berdasarkan detected technologies
Automated Workflow Management - Sequential phase execution dengan dependency handling
š Comprehensive Reporting
Multi-Format Reports - HTML, PDF, JSON, Markdown output
Executive Summaries - Business-friendly risk assessments
Technical Details - Detailed vulnerability descriptions dan remediation
Evidence Collection - Automatic proof collection dan documentation
Related MCP server: BugBounty MCP Server
š Prerequisites
Required Tools
Pastikan tools berikut sudah terinstall di sistem:
# Network scanning
sudo apt install nmap
# Web vulnerability scanning
go install -v github.com/projectdiscovery/nuclei/v3/cmd/nuclei@latest
# Web server scanning
sudo apt install nikto
# SQL injection testing
sudo apt install sqlmap
# Optional: Metasploit (untuk advanced exploitation)
curl https://raw.githubusercontent.com/rapid7/metasploit-omnibus/master/config/templates/metasploit-framework-wrappers/msfupdate.erb > msfinstall
chmod 755 msfinstall
sudo ./msfinstallNode.js Dependencies
npm installš ļø Installation
Clone repository
git clone <repository-url>
cd mcp-pentestInstall dependencies
npm installBuild project
npm run buildConfigure MCP client Tambahkan ke file konfigurasi MCP client Anda:
{
"mcpServers": {
"pentest": {
"command": "node",
"args": ["path/to/mcp-pentest/dist/index.js"],
"env": {}
}
}
}šÆ Usage Examples
Basic Automated Pentest
// Full scope automated pentest
await mcp.call("auto_pentest", {
target: "example.com",
scope: "full",
intensity: "active"
});Reconnaissance Only
// Port scanning
await mcp.call("nmap_scan", {
target: "192.168.1.1",
scan_type: "aggressive"
});
// Technology detection
await mcp.call("tech_detection", {
url: "https://example.com"
});
// Subdomain enumeration
await mcp.call("subdomain_enum", {
domain: "example.com"
});Vulnerability Scanning
// Nuclei scan with specific templates
await mcp.call("nuclei_scan", {
target: "https://example.com",
templates: ["cves", "vulnerabilities"],
severity: "high"
});
// SQL injection testing
await mcp.call("sqlmap_scan", {
url: "https://example.com/login.php",
data: "username=admin&password=test"
});Exploitation Attempts
// Search for Metasploit modules
await mcp.call("metasploit_search", {
service: "Apache 2.4.41",
platform: "linux"
});
// Attempt exploitation
await mcp.call("exploit_attempt", {
target: "192.168.1.100",
vulnerability: "SQL Injection",
payload: "UNION SELECT"
});Intelligent Next Steps
// Get AI-powered recommendations
await mcp.call("suggest_next_steps", {
scan_results: JSON.stringify(previousResults)
});Report Generation
// Generate comprehensive report
await mcp.call("generate_report", {
target: "example.com",
format: "html"
});š§ Configuration
Scan Intensity Levels
Passive
Certificate transparency logs
DNS enumeration
Header analysis
Public information gathering
Active
Port scanning
Directory bruteforcing
Vulnerability scanning
Service enumeration
Aggressive
Full port range scanning
Intensive directory bruteforcing
Active exploitation attempts
Comprehensive vulnerability testing
Scope Options
Network
Port scanning
Service enumeration
Network vulnerability assessment
Web
Web application testing
Technology fingerprinting
Web vulnerability scanning
Full
Comprehensive assessment
Network + Web testing
Complete attack surface analysis
š”ļø Security Considerations
Ethical Usage
ā ļø IMPORTANT: Framework ini hanya boleh digunakan untuk:
Authorized penetration testing
Security research dengan permission
Testing terhadap sistem milik sendiri
Educational purposes
Safety Features
Rate limiting - Automatic request throttling
Timeout controls - Prevent long-running scans
Scope validation - Target validation dan restriction
Safe exploitation - Controlled dan reversible tests
Legal Compliance
Pastikan ada written authorization sebelum testing
Comply dengan local laws dan regulations
Respect responsible disclosure practices
Document semua testing activities
š Sample Output
Automated Pentest Results
{
"workflow": {
"target": "example.com",
"scope": "full",
"phases": [
{
"name": "reconnaissance",
"status": "completed",
"tools": ["nmap_scan", "subdomain_enum", "tech_detection"]
}
],
"results": {
"reconnaissance": {
"open_ports": [
{"port": 80, "service": "http", "version": "Apache 2.4.41"},
{"port": 443, "service": "https", "version": "Apache 2.4.41"}
],
"technologies": [
{"technology": "WordPress", "version": "5.8", "confidence": 95}
]
},
"vulnerabilities": [
{
"name": "Outdated WordPress",
"severity": "medium",
"description": "WordPress version 5.8 has known vulnerabilities"
}
],
"risk_score": 65,
"threat_level": "medium"
}
}
}š Workflow Engine
Framework menggunakan intelligent workflow engine yang dapat:
Analyze scan results - Automatically interpret findings
Make decisions - Determine next testing steps
Adapt strategy - Modify approach based on discoveries
Prioritize actions - Focus on high-impact vulnerabilities
Generate insights - Provide actionable recommendations
Decision Making Logic
Reconnaissance ā Technology Detection ā Vulnerability Assessment ā Risk Analysis ā Exploitation ā Reporting
ā ā ā ā ā ā
Port Discovery ā CMS/Framework ā Targeted Scanning ā Priority Queue ā Controlled ā Evidence
Subdomain Enum ā Version Info ā Custom Checks ā Risk Scoring ā Attempts ā Collectionšļø Architecture
āāāāāāāāāāāāāāāāāāā āāāāāāāāāāāāāāāāāāāā āāāāāāāāāāāāāāāāāāā
ā MCP Client ā ā MCP Protocol ā ā Pentest Server ā
ā (Claude/etc) āāāāāŗā Transport āāāāāŗā (Node.js) ā
āāāāāāāāāāāāāāāāāāā āāāāāāāāāāāāāāāāāāāā āāāāāāāāāāāāāāāāāāā
ā
āāāāāāāāāāāāāāāāāāā
ā Tool Integration ā
ā - Nmap ā
ā - Nuclei ā
ā - Nikto ā
ā - SQLMap ā
ā - Metasploit ā
āāāāāāāāāāāāāāāāāāāš¤ Contributing
Fork repository
Create feature branch
Implement changes dengan tests
Submit pull request
Follow security best practices
š License
MIT License - See LICENSE file for details
ā ļø Disclaimer
Tool ini dibuat untuk tujuan educational dan authorized security testing. User bertanggung jawab untuk memastikan penggunaan yang legal dan ethical. Developer tidak bertanggung jawab atas penyalahgunaan tool ini.
š Support
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Flicense-qualityDmaintenanceAI-powered cybersecurity automation platform with 150+ security tools and 12+ autonomous AI agents for penetration testing, vulnerability assessment, and bug bounty hunting. Enables comprehensive security testing through intelligent tool selection and automated workflows.2
- Alicense-qualityFmaintenanceEnables comprehensive security testing and penetration testing through natural language conversations with 92+ tools for reconnaissance, vulnerability assessment, web application testing, OSINT, and reporting. Designed for authorized bug bounty hunting and security assessments.39MIT
- Alicense-qualityDmaintenanceEnables automated penetration testing workflow planning using Beam Search and Monte Carlo Tree Search algorithms to generate step-by-step attack paths, score vulnerabilities, and recommend tools for reconnaissance, exploitation, and privilege escalation tasks.36MIT
- Flicense-qualityDmaintenanceAI-powered autonomous penetration testing framework with 80+ professional security tools across reconnaissance, web application testing, exploitation, and forensics. Integrates with LM Studio for intelligent vulnerability assessment and automated security testing workflows.3
Related MCP Connectors
Offline methodology engine for authorized penetration testing, CTF, and security research.
AI-powered threat intelligence, smart contract auditing, and cybersecurity OSINT.
Threat modeling, code/cloud/pipeline scanning, shadow-AI discovery, compliance checks and fixes.
Appeared in Searches
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/adriyansyah-mf/mcp-pentest'
If you have feedback or need assistance with the MCP directory API, please join our Discord server