A community-driven registry for Claude, Cursor, Windsurf, Cline & more. Not affiliated with Anthropic.
Are you the author? Sign in to claim
Containerized Kali MCP server
A Model Context Protocol (MCP) server that provides command execution capabilities in a containerized Kali Linux environment for semi-automated penetration testing and security research capabilities.
https://github.com/user-attachments/assets/demo.mp4
Watch the Kali MCP Server in action
This tool is provided for educational and authorized security testing purposes only. Use at your own risk. The authors are not responsible for any misuse or damage caused by this software. Always ensure you have proper authorization before conducting security assessments.
Start the container:
docker compose up --build -d
Verify it's running:
docker ps | grep kali-mcp-server
Configure your MCP client:
⚠️ IMPORTANT: Disable any built-in terminal or command execution tools in your MCP client to prevent commands from being unintentionally executed on your host system instead of the Kali container. All security tools should run exclusively within the containerized environment for safety and isolation.
Claude Desktop:
claude mcp add --transport stdio kali-mcp-server "docker exec -i kali-mcp-server python3 /app/kali_server.py"
Gemini CLI:
gemini mcp add kali-mcp-server "docker exec -i kali-mcp-server python3 /app/kali_server.py"
VS Code (Copilot):
Create or edit .vscode/mcp.json in your workspace:
{
"servers": {
"kali-mcp-server": {
"type": "stdio",
"command": "docker",
"args": [
"exec",
"-i",
"kali-mcp-server",
"python3",
"/app/kali_server.py"
]
}
}
}
Others
{
"mcpServers": {
"kali-mcp-server": {
"type": "stdio",
"command": "docker",
"args": [
"exec",
"-i",
"kali-mcp-server",
"python3",
"/app/kali_server.py"
],
"env": {}
}
}
}
After configuration: Restart your MCP client to load the Kali MCP server.
run_kali_command - Execute commands in Kali environmentget_job_status - Check background job statuslist_background_jobs - List all running jobscancel_job - Cancel a running jobget_workspace_info - Get workspace configurationstart_interactsh - Start out-of-band interaction monitoringget_interactsh_status - Check interactsh worker statuspoll_interactsh - Retrieve recorded interactionsstop_interactsh - Stop interactsh workerget_service_tokens - Get configured API service tokensnmap, masscandirb, ffuf, whatweb, niktodig, whois, dnsreconcurl, wget, jq, exiftoolSeclistsEdit config.toml to configure:
This project is an independent open-source contribution and is not affiliated with, endorsed by, or associated with OffSec or Kali Linux. Kali Linux is a trademark of Offensive Security.
Run Claude Code as an MCP server so any agent can delegate coding tasks to it
Browser automation using accessibility snapshots instead of screenshots
MCP server integration for DaVinci Resolve Studio
A Jetbrains IDE IntelliJ plugin aimed to provide coding agents the ability to leverage intelliJ's indexing of the codeba