Zammad-MCP vs filesystem
Side-by-side comparison to help you pick between these two MCP servers.
Zammad-MCP by basher83 | filesystem by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 30 | ★ 85,748 |
| 30d uses | — | — |
| Score | 46 | 77 |
| Official | — | ✓ |
| Categories | ProductivityCommunicationDeveloper Tools | File SystemDeveloper ToolsProductivity |
| 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.
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
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
filesystem · Use cases
- Enable AI models to read and write project files during development
- Allow Claude or other MCP clients to browse and analyze codebases
- Provide secure sandboxed access to specific directories for content generation
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:latestfilesystem · Install
Installation
Using NPX
{
"mcpServers": {
"filesystem": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-filesystem",
"/path/to/allowed/directory"
]
}
}
}Using Docker
{
"mcpServers": {
"filesystem": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"--mount", "type=bind,src=/path/to/allowed/dir,dst=/projects/allowed/dir",
"mcp/filesystem",
"/projects"
]
}
}
}VS Code Extension
Click the installation buttons in the README to install directly in VS Code.