daedalus/mcp-zabbix
MCP server for Zabbix API - exposes all Zabbix API functionality via MCP
Platform-specific configuration:
{
"mcpServers": {
"mcp-zabbix": {
"command": "npx",
"args": [
"-y",
"mcp-zabbix"
]
}
}
}Add the config above to .claude/settings.json under the mcpServers key.
> MCP server for Zabbix API - exposes all Zabbix API functionality via MCP
[](https://pypi.org/project/mcp-zabbix/) [](https://pypi.org/project/mcp-zabbix/)
mcp-name: io.github.daedalus/mcp-zabbix
pip install mcp-zabbixSet the following environment variables:
ZABBIX_URL - Zabbix API URL (required)ZABBIX_TOKEN - API token (required, or use user/password)ZABBIX_USER - Zabbix username (optional)ZABBIX_PASSWORD - Zabbix password (optional)from mcp_zabbix import mcp
mcp.run()Or via CLI:
mcp-zabbixThe MCP server exposes all Zabbix API methods as tools. Tools follow the pattern:
zabbix_<namespace>_<method> (e.g., zabbix_host_get, zabbix_host_create)git clone https://github.com/daedalus/mcp-zabbix.git
cd mcp-zabbix
pip install -e ".[test]"
# run tests
pytest
# format
ruff format src/ tests/
# lint
ruff check src/ tests/
# type check
mypy src/Loading reviews...