mcp-server-wazuh vs time
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-wazuh by gbrigandi | time by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 206 | ★ 85,748 |
| 30d uses | — | — |
| Score | 49 | 77 |
| Official | — | ✓ |
| Categories | SecurityDeveloper ToolsMonitoring | ProductivityDeveloper ToolsCommunication |
| Language | Rust | TypeScript |
| Last commit | 5 mo ago | this month |
mcp-server-wazuh · Summary
Rust-based MCP server for Wazuh SIEM enabling natural language queries to security alerts, vulnerabilities, and system metrics.
time · Summary
A comprehensive MCP server providing time and timezone conversion tools with automatic system timezone detection.
mcp-server-wazuh · Use cases
- Security alert triage and investigation with natural language queries
- Vulnerability management and patch prioritization across agent infrastructure
- System forensics and incident response combining alerts with process/ports data
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-server-wazuh · Install
Installation
**Option 1: Download Pre-built Binary (Recommended)**
- Download the binary for your OS from the [Releases page](https://github.com/gbrigandi/mcp-server-wazuh/releases)
- Make it executable (
chmod +x mcp-server-wazuh-linux-amd64) - Add to your PATH for easier access
**Option 2: Docker**
docker pull ghcr.io/gbrigandi/mcp-server-wazuh:latest**Option 3: Build from Source**
git clone https://github.com/gbrigandi/mcp-server-wazuh.git
cd mcp-server-wazuh
cargo build --releaseConfiguration
Configure Claude Desktop with claude_desktop_config.json:
{
"mcpServers": {
"wazuh": {
"command": "/path/to/mcp-server-wazuh",
"args": [],
"env": {
"WAZUH_API_HOST": "your_wazuh_manager_api_host",
"WAZUH_API_PORT": "55000",
"WAZUH_API_USERNAME": "your_wazuh_api_user",
"WAZUH_API_PASSWORD": "your_wazuh_api_password",
"WAZUH_INDEXER_HOST": "your_wazuh_indexer_host",
"WAZUH_INDEXER_PORT": "9200",
"WAZUH_INDEXER_USERNAME": "your_wazuh_indexer_user",
"WAZUH_INDEXER_PASSWORD": "your_wazuh_indexer_password",
"WAZUH_VERIFY_SSL": "false",
"WAZUH_TEST_PROTOCOL": "https",
"RUST_LOG": "info"
}
}
}
}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"]
}
}
}