Zammad-MCP vs time
Side-by-side comparison to help you pick between these two MCP servers.
Zammad-MCP by basher83 | time by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 30 | ★ 85,748 |
| 30d uses | — | — |
| Score | 46 | 77 |
| Official | — | ✓ |
| Categories | ProductivityCommunicationDeveloper Tools | ProductivityDeveloper ToolsCommunication |
| Language | Python | TypeScript |
| Last commit | this month | this month |
Zammad-MCP · Summary
A comprehensive MCP server for Zammad integration with extensive ticket management tools, attachment support, and both stdio/HTTP transport options.
time · Summary
A comprehensive MCP server providing time and timezone conversion tools with automatic system timezone detection.
Zammad-MCP · Use cases
- AI assistants can create, update, and analyze customer support tickets in real-time
- Automated ticket categorization and prioritization based on content analysis
- Generate personalized responses to customer inquiries based on ticket history and user profiles
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
Zammad-MCP · Install
Installation
With Claude Desktop
Add to your Claude Desktop configuration:
{
"mcpServers": {
"zammad": {
"command": "uvx",
"args": ["--from", "git+https://github.com/basher83/zammad-mcp.git", "mcp-zammad"],
"env": {
"ZAMMAD_URL": "https://your-instance.zammad.com/api/v1",
"ZAMMAD_HTTP_TOKEN": "your-api-token"
}
}
}
}With Docker
docker run --rm -i \
-e ZAMMAD_URL=https://your-instance.zammad.com/api/v1 \
-e ZAMMAD_HTTP_TOKEN=your-api-token \
ghcr.io/basher83/zammad-mcp:latesttime · 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"]
}
}
}