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 | — | — |
| Score | 85 | 52 |
| Official | — | — |
| Categories | AI / LLM ToolsBrowser AutomationFile System | SecurityDeveloper ToolsAI / LLM Tools |
| Language | Python | Python |
| Last commit | 2 mo ago | 2 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
- Clone the repository:
git clone https://github.com/Dicklesworthstone/ultimate_mcp_server.git
cd ultimate_mcp_server- Install dependencies:
pip install -e .- For Claude Desktop integration, add to your claude_desktop_config.json:
{
"mcpServers": {
"ultimate-mcp": {
"command": "python",
"args": ["-m", "ultimate_mcp_server"],
"env": {
"PYTHONPATH": "."
}
}
}
}- Run the server:
python -m ultimate_mcp_serverMCP-Kali-Server · Install
Installation
On your Kali Machine
sudo apt install mcp-kali-server
kali-server-mcpFor 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.pyOn your MCP client machine
For local setup:
./client.py --server http://127.0.0.1:5000For remote setup with SSH tunnel:
ssh -L 5000:localhost:5000 user@LINUX_IP
./client.py --server http://127.0.0.1:5000Claude 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"
}
}
}
}