time vs MCP-Kali-Server
Side-by-side comparison to help you pick between these two MCP servers.
time by modelcontextprotocol | MCP-Kali-Server by Wh0am123 | |
|---|---|---|
| Stars | ★ 85,748 | ★ 688 |
| 30d uses | — | — |
| Score | 77 | 52 |
| Official | ✓ | — |
| Categories | ProductivityDeveloper ToolsCommunication | SecurityDeveloper ToolsAI / LLM Tools |
| Language | TypeScript | Python |
| Last commit | this month | 2 mo ago |
time · Summary
A comprehensive MCP server providing time and timezone conversion tools with automatic system timezone detection.
MCP-Kali-Server · Summary
MCP Kali Server connects AI agents to Linux systems for penetration testing and CTF challenges.
time · Use cases
- Assisting with international meeting scheduling across time zones
- Providing real-time time information for location-based queries
- Enabling time conversion for travel planning and itineraries
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
time · Install
Installation Options
**Using uv (recommended):**
uvx mcp-server-time**Using PIP:**
pip install mcp-server-time
python -m mcp_server_time**Configure for Claude Desktop:**
{
"mcpServers": {
"time": {
"command": "uvx",
"args": ["mcp-server-time"]
}
}
}MCP-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"
}
}
}
}