Featured

Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger
Crawl and scrape any site into clean data, 10% off logoCrawl and scrape any site into clean data, 10% off

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits, and new users get 10% off their first purchase.

Try Firecrawl free
Your own AI agent, running 24/7 with QwikClaw logoYour own AI agent, running 24/7 with QwikClaw

QwikClaw sets up and runs an always-on OpenClaw agent for you. One click, no config files, no server setup.

Deploy now
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free
SetupClaw: done-for-you OpenClaw for founders & exec teams logoSetupClaw: done-for-you OpenClaw for founders & exec teams

White-glove OpenClaw for founders and exec teams (4–50+ employees): we install, harden, integrate your tools, and maintain it — secured from day one.

Get it set up for you
SEO data APIs for your agent, $1 free credit logoSEO data APIs for your agent, $1 free credit

DataForSEO gives your agent live access to SERP results, keyword data, backlinks, and on-page SEO data through one API. New accounts get a $1 credit, good for up to 20,000 keyword or backlink lookups.

Try DataForSEO free
Reach 47,000+ AI builders

A flat monthly placement in front of developers actively installing AI tools. No lock-in, cancel anytime.

Advertise here

Works with

Claude CodeClaude DesktopCursorVS CodeClineCodex CLIOpenClaw+ any MCP client

Install to Claude Code

This server doesn't publish a one-line install command. Follow the setup in the source repository.

Summary

Enables running Kali Linux security tools and commands in a containerized environment for semi-automated penetration testing, with background job management and out-of-band interaction detection.

README.md

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.

Demo

https://github.com/user-attachments/assets/demo.mp4

Watch the Kali MCP Server in action

Disclaimer

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.

Features

  • Containerized Command Execution: Run Kali Linux security tools in a containerized environment
  • Background Job Management: Long-running commands (>60s) automatically run as background jobs
  • Interactsh Integration: Out-of-band interaction detection for blind vulnerabilities
  • Service API Management: Centralized configuration for reconnaissance APIs (GitHub, Shodan, etc.)
  • Workspace Management: Organized directory structure for pentest artifacts

Requirements

  • Docker & Docker Compose
  • MCP-compatible client (Claude Code, Gemini CLI, VS Code with Copilot, etc.)

Quick Start

  1. Start the container:
   docker compose up --build -d
  1. Verify it's running:
   docker ps | grep kali-mcp-server
  1. 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.

Available Tools

Core MCP Tools

  • run_kali_command - Execute commands in Kali environment
  • get_job_status - Check background job status
  • list_background_jobs - List all running jobs
  • cancel_job - Cancel a running job
  • get_workspace_info - Get workspace configuration

Interactsh Tools

  • start_interactsh - Start out-of-band interaction monitoring
  • get_interactsh_status - Check interactsh worker status
  • poll_interactsh - Retrieve recorded interactions
  • stop_interactsh - Stop interactsh worker

Service Management

  • get_service_tokens - Get configured API service tokens

Pre-installed Security Tools

  • Network Scanning: nmap, masscan
  • Web Testing: dirb, ffuf, whatweb, nikto
  • DNS/Domain: dig, whois, dnsrecon
  • Utilities: curl, wget, jq, exiftool
  • Wordlists: Seclists

Configuration

Edit config.toml to configure:

  • Workspace directory structure
  • Interactsh settings
  • API service tokens (GitHub, Shodan, VirusTotal, etc.)

Security Notes

  • Container runs with necessary privileges for security tools
  • Network tools require elevated capabilities (NET_ADMIN, NET_RAW)
  • All command execution is contained within the Docker environment
  • API tokens should be configured securely in production

License

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.

See related servers & alternatives →

Related MCP servers

Browse all →

Related guides

Hand-picked reading to help you choose and use Cloud & DevOps servers.