MCP Catalogs
Home

zabbix-mcp-server vs everything

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

zabbix-mcp-server
by initMAX
everything
by modelcontextprotocol
Stars★ 98★ 85,748
30d uses
Score4877
Official
Categories
MonitoringDeveloper ToolsOps & Infra
Developer ToolsAI / LLM ToolsOther
LanguagePythonTypeScript
Last committhis monththis month

zabbix-mcp-server · Summary

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

everything · Summary

Official MCP test server exercising all protocol features for client builders.

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

everything · Use cases

  • Testing MCP client implementations against all protocol features
  • Learning MCP protocol capabilities through a reference server
  • Validating client compatibility with different transport methods

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"
      }
    }
  }
}

everything · Install

NPX (recommended)

{
  "mcpServers": {
    "everything": {
      "command": "npx",
      "args": ["-y", "@modelcontextprotocol/server-everything"]
    }
  }
}

On Windows, use cmd /c:

{
  "mcpServers": {
    "everything": {
      "command": "cmd",
      "args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
    }
  }
}

Docker

{
  "mcpServers": {
    "everything": {
      "command": "docker",
      "args": ["run", "-i", "--rm", "mcp/everything"]
    }
  }
}

Global install

npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everything
Comparison generated from public README + GitHub signals. Last updated automatically.