Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"io-github-daedalus-mcp-zabbix": {
"args": [
"mcp-zabbix"
],
"command": "uvx"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
MCP server for Zabbix API - exposes all Zabbix API functionality via MCP
Run this in your terminal to verify the server starts. Then let us know if it worked — your result helps other developers.
uvx 'mcp-zabbix' 2>&1 | head -1 && echo "✓ Server started successfully"
After testing, let us know if it worked:
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
Checked mcp-zabbix against OSV.dev.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in devops / analytics
MCP server for using the GitLab API
MCP Server for GCP environment for interacting with various Observability APIs.
Enhanced MCP server for GitLab: group projects listing and activity tracking
Yunxiao MCP Server provides AI assistants with the ability to interact with the Yunxiao platform. It provides a set of tools that interact with Yunxiao's API, allowing AI assistants to manage Codeup repository, Project, Pipeline, Packages etc.
MCP Security Weekly
Get CVE alerts and security updates for Zabbix MCP Server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
MCP server for Zabbix API - exposes all Zabbix API functionality via MCP
mcp-name: io.github.daedalus/mcp-zabbix
pip install mcp-zabbix
Set 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-zabbix
The 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/