Skip to main content
Glama

ikaliMCP Server

by whobcode
Dockerfile1.37 kB
# Use Kali Linux base image for authentic tool environment FROM kalilinux/kali-rolling # Set working directory WORKDIR /app # Set Python unbuffered mode ENV PYTHONUNBUFFERED=1 # Update package lists and install required tools and Python RUN apt-get update && apt-get install -y \ python3 \ python3-pip \ hydra \ nmap \ sqlmap \ nikto \ wpscan \ dirb \ exploitdb \ metasploit-framework \ gobuster \ john \ hashcat \ wireshark-common \ tshark \ aircrack-ng \ # Additional tools for dynamic registry theharvester \ sherlock \ netcat-openbsd \ hping3 \ whatweb \ ffuf \ enum4linux \ dnsrecon \ fierce \ sublist3r \ && apt-get clean \ && rm -rf /var/lib/apt/lists/* # Copy requirements first for better caching COPY requirements.txt . # Install Python dependencies RUN pip3 install --no-cache-dir -r requirements.txt # Copy the server code COPY ikaliMCP_server.py . COPY self_check.py . COPY container_api.py . COPY generate_tools_catalog.py . # Generate static tools catalog for offline docs RUN TOOLS_CATALOG_PATH=/app/tools_catalog.json python3 generate_tools_catalog.py # Set capabilities for network tools (running as root as requested) # Note: Running as root for full tool access as specified USER root CMD ["python3", "ikaliMCP_server.py"]

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/whobcode/mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server