MCP Catalogs
Home

ultimate_mcp_server vs MCP-Kali-Server

Side-by-side comparison to help you pick between these two MCP servers.

ultimate_mcp_server
by Dicklesworthstone
MCP-Kali-Server
by Wh0am123
Stars★ 149★ 688
30d uses
Score8552
Official
Categories
AI / LLM ToolsBrowser AutomationFile System
SecurityDeveloper ToolsAI / LLM Tools
LanguagePythonPython
Last commit2 mo ago2 mo ago

ultimate_mcp_server · Summary

Comprehensive MCP server providing dozens of capabilities for AI agents including LLM delegation, browser automation, document processing, and cognitive memory systems.

MCP-Kali-Server · Summary

MCP Kali Server connects AI agents to Linux systems for penetration testing and CTF challenges.

ultimate_mcp_server · Use cases

  • Complex document processing and analysis with OCR and structured data extraction
  • Web automation and research across multiple sites with browser control
  • Cost-optimized AI workflows through intelligent task delegation between models

MCP-Kali-Server · Use cases

  • AI-assisted penetration testing with security tools like Nmap and Metasploit
  • Solving CTF challenges by executing commands and capturing flags
  • Automating reconnaissance and exploitation tasks for bug bounty hunting

ultimate_mcp_server · Install

Installation

  1. Clone the repository:
git clone https://github.com/Dicklesworthstone/ultimate_mcp_server.git
cd ultimate_mcp_server
  1. Install dependencies:
pip install -e .
  1. For Claude Desktop integration, add to your claude_desktop_config.json:
{
  "mcpServers": {
    "ultimate-mcp": {
      "command": "python",
      "args": ["-m", "ultimate_mcp_server"],
      "env": {
        "PYTHONPATH": "."
      }
    }
  }
}
  1. Run the server:
python -m ultimate_mcp_server

MCP-Kali-Server · Install

Installation

On your Kali Machine

sudo apt install mcp-kali-server
kali-server-mcp

For bleeding edge:

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
./server.py

On your MCP client machine

For local setup:

./client.py --server http://127.0.0.1:5000

For remote setup with SSH tunnel:

ssh -L 5000:localhost:5000 user@LINUX_IP
./client.py --server http://127.0.0.1:5000

Claude Desktop Configuration

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "kali": {
      "command": "python3",
      "args": ["/path/to/MCP-Kali-Server/client.py"],
      "env": {
        "MCP_SERVER_URL": "http://localhost:5000"
      }
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.