MCP Catalogs
Home

zabbix-mcp-server vs filesystem

Side-by-side comparison to help you pick between these two MCP servers.

zabbix-mcp-server
by initMAX
filesystem
by modelcontextprotocol
Stars★ 98★ 85,748
30d uses
Score4877
Official
Categories
MonitoringDeveloper ToolsOps & Infra
File SystemDeveloper ToolsProductivity
LanguagePythonTypeScript
Last committhis monththis month

zabbix-mcp-server · Summary

Complete Zabbix API server exposing 237 tools for monitoring and management via MCP protocol.

filesystem · Summary

A feature-rich MCP server for filesystem operations with dynamic directory access control.

zabbix-mcp-server · Use cases

  • Automated Zabbix monitoring through AI assistants
  • Generating PDF reports for Zabbix infrastructure
  • Performing bulk operations on Zabbix hosts and templates

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

zabbix-mcp-server · Install

Installation

git clone https://github.com/initMAX/zabbix-mcp-server.git
cd zabbix-mcp-server
sudo ./deploy/install.sh
sudo nano /etc/zabbix-mcp/config.toml   # fill in your Zabbix URL + API token
sudo systemctl start zabbix-mcp-server
sudo systemctl enable zabbix-mcp-server

Claude Desktop Configuration

Add to claude_desktop_config.json:

{
  "mcpServers": {
    "zabbix": {
      "command": "python",
      "args": ["-m", "zabbix_mcp_server"],
      "env": {
        "ZABBIX_MCP_CONFIG": "/etc/zabbix-mcp/config.toml"
      }
    }
  }
}

filesystem · 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.

Comparison generated from public README + GitHub signals. Last updated automatically.