io.github.mhajder/zabbix-mcp
Officialby mhajder · Python
Zabbix MCP
MCP server for Zabbix monitoring and automation
Monitoring and automation interface for Zabbix infrastructure platform.
Topics
README not available yet.
Install
Configuration
ZABBIX_URLrequiredZabbix API URL (e.g., https://zabbix.example.com/api_jsonrpc.php)
ZABBIX_TOKENsecretZabbix API token (preferred for Zabbix 5.4+)
ZABBIX_USERZabbix username (alternative to token)
ZABBIX_PASSWORDsecretZabbix password (alternative to token)
ZABBIX_VERIFY_SSLdefault trueVerify SSL certificates (true/false)
ZABBIX_TIMEOUTdefault 30Request timeout in seconds
ZABBIX_SKIP_VERSION_CHECKdefault falseSkip Zabbix API version compatibility check
READ_ONLY_MODEdefault falseEnable read-only mode to restrict write operations
DISABLED_TAGSComma-separated list of tags to disable tools for
LOG_LEVELdefault INFOLogging level (DEBUG, INFO, WARNING, ERROR, CRITICAL)
RATE_LIMIT_ENABLEDdefault falseEnable rate limiting
RATE_LIMIT_MAX_REQUESTSdefault 60Maximum requests per rate limit window
RATE_LIMIT_WINDOW_MINUTESdefault 1Rate limit window in minutes
TOOL_SEARCH_ENABLEDdefault falseEnable FastMCP tool search transform
TOOL_SEARCH_STRATEGYdefault bm25Tool search strategy (bm25 or regex)
TOOL_SEARCH_MAX_RESULTSdefault 5Maximum tool search results returned by search_tools
MCP_HTTP_PORTdefault 8000Port for HTTP server (default: 8000)
MCP_TRANSPORTdefault httpMCP transport type (http for HTTP, stdio for stdio)
-prequireddefault {MCP_HTTP_PORT}:8000claude_desktop_config.json
{
"mcpServers": {
"zabbix-mcp": {
"command": "uvx",
"args": [
"zabbix-mcp"
],
"env": {
"ZABBIX_URL": "<YOUR_ZABBIX_URL>",
"ZABBIX_TOKEN": "<YOUR_ZABBIX_TOKEN>",
"ZABBIX_USER": "<YOUR_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": "<YOUR_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"
}
}
}
}