This guide explains how to integrate MCP (Model Context Protocol) with Claude using Kali Linux.
1. Install Docker and Run Kali Container
First, install Docker and start a Kali Linux container.
docker run -dit \
--name kali \
--hostname kali-mcp \
-p 5000:5000 \
--cap-add=NET_RAW \
--cap-add=NET_ADMIN \
kalilinux/kali-rolling
Once the container is running, install the required tools.
apt install -y kali-linux-headless python3 python3-pip tmux Start the MCP server on Kali:
kali-server-mcp Clone the MCP Kali Server repository and set up the Python environment.
git clone https://github.com/Wh0am123/MCP-Kali-Server.git
cd MCP-Kali-Server
python3 -m venv .venv
source .venv/bin/activate
pip install -r requirements.txt Edit the Claude configuration file:
claude_desktop_config.json
{
"mcpServers": {
"kali": {
"command": "python",
"args": [
"C:\\Users\\B0273060\\Desktop\\AI\\MCP-Kali-Server\\client.py"
]
}
}
}
This configuration connects Claude Desktop to the MCP Kali Server client, enabling Claude to interact with Kali tools.
✅ After completing these steps, Claude can execute security tools in Kali via MCP.
The gau (Get All URLs) tool is a versatile open-source utility that collects URLs from…
Jsluice++ is a Burp Suite extension designed for passive and active scanning of JavaScript traffic…
Hey Folks :) !! In this tutorial, we will describe some of the techniques commonly…
Hey Folks :) !! In this article, we present the "Termux Cheat Sheet for Hackers"…
Amid the rapid advancement of technology, the significance of human involvement in cybersecurity frequently goes…
Hey Folks, we are back today after such a long break, but don't worry we…
This website uses cookies.