time vs opnsense-mcp-server
Side-by-side comparison to help you pick between these two MCP servers.
time by modelcontextprotocol | opnsense-mcp-server by Pixelworlds | |
|---|---|---|
| Stars | ★ 85,748 | ★ 42 |
| 30d uses | — | — |
| Score | 77 | 42 |
| Official | ✓ | — |
| Categories | ProductivityDeveloper ToolsCommunication | SecurityOps & InfraDeveloper Tools |
| Language | TypeScript | JavaScript |
| Last commit | this month | 11 mo ago |
time · Summary
A comprehensive MCP server providing time and timezone conversion tools with automatic system timezone detection.
opnsense-mcp-server · Summary
Modular MCP server for OPNsense firewall management with 88 tools accessing 2000+ methods.
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
opnsense-mcp-server · Use cases
- AI-powered firewall management and configuration
- Automated security policy enforcement
- Network diagnostics and troubleshooting
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"]
}
}
}opnsense-mcp-server · Install
Installation
Prerequisites
- Node.js 18 or higher
- An OPNsense firewall with API access enabled
- API key and secret from your OPNsense installation
Install from npm
npm install -g @richard-stovall/opnsense-mcp-serverClaude Desktop Configuration
Add the following to your Claude Desktop configuration file:
**macOS**: ~/Library/Application Support/Claude/claude_desktop_config.json **Windows**: %APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"opnsense": {
"command": "npx",
"args": ["-y", "@richard-stovall/opnsense-mcp-server"],
"env": {
"OPNSENSE_URL": "https://192.168.1.1",
"OPNSENSE_API_KEY": "your-api-key",
"OPNSENSE_API_SECRET": "your-api-secret",
"OPNSENSE_VERIFY_SSL": "false"
}
}
}
}