← Index

Zabbix MCP

io.github.mhajder/zabbix-mcp·v0.3.0·Other
Quality Score
85
/100

MCP server for Zabbix monitoring and automation

§01  Install
Claude Desktop (uvx)
{
  "mcpServers": {
    "zabbix-mcp": {
      "command": "uvx",
      "args": [
        "zabbix-mcp"
      ],
      "env": {
        "ZABBIX_URL": "<zabbix_url>",
        "ZABBIX_TOKEN": "<your-zabbix_token>",
        "ZABBIX_USER": "<zabbix_user>",
        "ZABBIX_PASSWORD": "<your-zabbix_password>",
        "ZABBIX_VERIFY_SSL": "true",
        "ZABBIX_TIMEOUT": "30",
        "ZABBIX_SKIP_VERSION_CHECK": "false",
        "READ_ONLY_MODE": "false",
        "DISABLED_TAGS": "<disabled_tags>",
        "LOG_LEVEL": "INFO",
        "RATE_LIMIT_ENABLED": "false",
        "RATE_LIMIT_MAX_REQUESTS": "60",
        "RATE_LIMIT_WINDOW_MINUTES": "1",
        "TOOL_SEARCH_ENABLED": "false",
        "TOOL_SEARCH_STRATEGY": "bm25",
        "TOOL_SEARCH_MAX_RESULTS": "5",
        "MCP_HTTP_PORT": "8000",
        "MCP_TRANSPORT": "<mcp_transport>"
      }
    }
  }
}
Claude Desktop (Docker)
{
  "mcpServers": {
    "zabbix-mcp": {
      "command": "docker",
      "args": [
        "run",
        "--rm",
        "-i",
        "ghcr.io/mhajder/zabbix-mcp:0.3.0"
      ],
      "env": {
        "ZABBIX_URL": "<zabbix_url>",
        "ZABBIX_TOKEN": "<your-zabbix_token>",
        "ZABBIX_USER": "<zabbix_user>",
        "ZABBIX_PASSWORD": "<your-zabbix_password>",
        "ZABBIX_VERIFY_SSL": "true",
        "ZABBIX_TIMEOUT": "30",
        "ZABBIX_SKIP_VERSION_CHECK": "false",
        "READ_ONLY_MODE": "false",
        "DISABLED_TAGS": "<disabled_tags>",
        "LOG_LEVEL": "INFO",
        "RATE_LIMIT_ENABLED": "false",
        "RATE_LIMIT_MAX_REQUESTS": "60",
        "RATE_LIMIT_WINDOW_MINUTES": "1",
        "TOOL_SEARCH_ENABLED": "false",
        "TOOL_SEARCH_STRATEGY": "bm25",
        "TOOL_SEARCH_MAX_RESULTS": "5",
        "MCP_HTTP_PORT": "8000",
        "MCP_TRANSPORT": "<mcp_transport>"
      }
    }
  }
}
§02  Environment variables
ZABBIX_URL
required

Zabbix API URL (e.g., https://zabbix.example.com/api_jsonrpc.php)

ZABBIX_TOKEN
secret

Zabbix API token (preferred for Zabbix 5.4+)

ZABBIX_USER

Zabbix username (alternative to token)

ZABBIX_PASSWORD
secret

Zabbix password (alternative to token)

ZABBIX_VERIFY_SSL

Verify SSL certificates (true/false)

ZABBIX_TIMEOUT

Request timeout in seconds

ZABBIX_SKIP_VERSION_CHECK

Skip Zabbix API version compatibility check

READ_ONLY_MODE

Enable read-only mode to restrict write operations

DISABLED_TAGS

Comma-separated list of tags to disable tools for

LOG_LEVEL

Logging level (DEBUG, INFO, WARNING, ERROR, CRITICAL)

RATE_LIMIT_ENABLED

Enable rate limiting

RATE_LIMIT_MAX_REQUESTS

Maximum requests per rate limit window

RATE_LIMIT_WINDOW_MINUTES

Rate limit window in minutes

TOOL_SEARCH_ENABLED

Enable FastMCP tool search transform

TOOL_SEARCH_STRATEGY

Tool search strategy (bm25 or regex)

TOOL_SEARCH_MAX_RESULTS

Maximum tool search results returned by search_tools

ZABBIX_URL
required

Zabbix API URL (e.g., https://zabbix.example.com/api_jsonrpc.php)

ZABBIX_TOKEN
secret

Zabbix API token (preferred for Zabbix 5.4+)

ZABBIX_USER

Zabbix username (alternative to token)

ZABBIX_PASSWORD
secret

Zabbix password (alternative to token)

ZABBIX_VERIFY_SSL

Verify SSL certificates (true/false)

ZABBIX_TIMEOUT

Request timeout in seconds

ZABBIX_SKIP_VERSION_CHECK

Skip Zabbix API version compatibility check

READ_ONLY_MODE

Enable read-only mode to restrict write operations

DISABLED_TAGS

Comma-separated list of tags to disable tools for

LOG_LEVEL

Logging level (DEBUG, INFO, WARNING, ERROR, CRITICAL)

RATE_LIMIT_ENABLED

Enable rate limiting

RATE_LIMIT_MAX_REQUESTS

Maximum requests per rate limit window

RATE_LIMIT_WINDOW_MINUTES

Rate limit window in minutes

TOOL_SEARCH_ENABLED

Enable FastMCP tool search transform

TOOL_SEARCH_STRATEGY

Tool search strategy (bm25 or regex)

TOOL_SEARCH_MAX_RESULTS

Maximum tool search results returned by search_tools

MCP_HTTP_PORT

Port for HTTP server (default: 8000)

MCP_TRANSPORT

MCP transport type (http for HTTP, stdio for stdio)

ZABBIX_URL
required

Zabbix API URL (e.g., https://zabbix.example.com/api_jsonrpc.php)

ZABBIX_TOKEN
secret

Zabbix API token (preferred for Zabbix 5.4+)

ZABBIX_USER

Zabbix username (alternative to token)

ZABBIX_PASSWORD
secret

Zabbix password (alternative to token)

ZABBIX_VERIFY_SSL

Verify SSL certificates (true/false)

ZABBIX_TIMEOUT

Request timeout in seconds

ZABBIX_SKIP_VERSION_CHECK

Skip Zabbix API version compatibility check

READ_ONLY_MODE

Enable read-only mode to restrict write operations

DISABLED_TAGS

Comma-separated list of tags to disable tools for

LOG_LEVEL

Logging level (DEBUG, INFO, WARNING, ERROR, CRITICAL)

RATE_LIMIT_ENABLED

Enable rate limiting

RATE_LIMIT_MAX_REQUESTS

Maximum requests per rate limit window

RATE_LIMIT_WINDOW_MINUTES

Rate limit window in minutes

TOOL_SEARCH_ENABLED

Enable FastMCP tool search transform

TOOL_SEARCH_STRATEGY

Tool search strategy (bm25 or regex)

TOOL_SEARCH_MAX_RESULTS

Maximum tool search results returned by search_tools

MCP_HTTP_PORT

Port for HTTP server (default: 8000)

§03  MCP Quality Score  ·  methodology
freshness
25
completeness
15
installability
25
documentation
15
stability
5
§04  Alternatives in Other