MCP server for Zabbix monitoring and automation
Valid MCP server (0 strong, 2 medium validity signals). 4 known CVEs in dependencies (1 critical, 1 high severity) Package registry verified. Imported from the Official MCP Registry.
3 files analyzed · 5 issues found
Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.
This plugin requests these system permissions. Most are normal for its category.
Set these up before or after installing:
Environment variable: ZABBIX_URL
Environment variable: ZABBIX_TOKEN
Environment variable: ZABBIX_USER
Environment variable: ZABBIX_PASSWORD
Environment variable: ZABBIX_VERIFY_SSL
Environment variable: ZABBIX_TIMEOUT
Environment variable: ZABBIX_SKIP_VERSION_CHECK
Environment variable: READ_ONLY_MODE
Environment variable: DISABLED_TAGS
Environment variable: LOG_LEVEL
Environment variable: RATE_LIMIT_ENABLED
Environment variable: RATE_LIMIT_MAX_REQUESTS
Environment variable: RATE_LIMIT_WINDOW_MINUTES
Environment variable: TOOL_SEARCH_ENABLED
Environment variable: TOOL_SEARCH_STRATEGY
Environment variable: TOOL_SEARCH_MAX_RESULTS
Environment variable: MCP_HTTP_PORT
Environment variable: MCP_TRANSPORT
Add this to your MCP configuration file:
{
"mcpServers": {
"io-github-mhajder-zabbix-mcp": {
"env": {
"LOG_LEVEL": "your-log-level-here",
"ZABBIX_URL": "your-zabbix-url-here",
"ZABBIX_USER": "your-zabbix-user-here",
"ZABBIX_TOKEN": "your-zabbix-token-here",
"DISABLED_TAGS": "your-disabled-tags-here",
"MCP_HTTP_PORT": "your-mcp-http-port-here",
"MCP_TRANSPORT": "your-mcp-transport-here",
"READ_ONLY_MODE": "your-read-only-mode-here",
"ZABBIX_TIMEOUT": "your-zabbix-timeout-here",
"ZABBIX_PASSWORD": "your-zabbix-password-here",
"ZABBIX_VERIFY_SSL": "your-zabbix-verify-ssl-here",
"RATE_LIMIT_ENABLED": "your-rate-limit-enabled-here",
"TOOL_SEARCH_ENABLED": "your-tool-search-enabled-here",
"TOOL_SEARCH_STRATEGY": "your-tool-search-strategy-here",
"RATE_LIMIT_MAX_REQUESTS": "your-rate-limit-max-requests-here",
"TOOL_SEARCH_MAX_RESULTS": "your-tool-search-max-results-here",
"RATE_LIMIT_WINDOW_MINUTES": "your-rate-limit-window-minutes-here",
"ZABBIX_SKIP_VERSION_CHECK": "your-zabbix-skip-version-check-here"
},
"args": [
"{MCP_HTTP_PORT}:8000",
"zabbix-mcp"
],
"command": "uvx"
}
}
}From the project's GitHub README.
Zabbix MCP Server is a Python-based Model Context Protocol (MCP) server designed to provide advanced, programmable access to Zabbix monitoring data and management features. It exposes a modern API for querying, automating, and integrating Zabbix resources such as hosts, templates, triggers, items, problems, events, users, proxies, maintenance periods, and more. The server supports both read and write operations, robust security features, and is suitable for integration with AI assistants, automation tools, dashboards, and custom monitoring workflows.
The easiest way to get started is to install from PyPI:
# Using UV (recommended)
uvx zabbix-mcp
# Or using pip
pip install zabbix-mcp
Remember to configure the environment variables for your Zabbix instance before running the server:
# Create environment configuration
export ZABBIX_URL=https://zabbix.example.com/api_jsonrpc.php
export ZABBIX_TOKEN=your-zabbix-api-token
git clone https://github.com/mhajder/zabbix-mcp.git
cd zabbix-mcp
# Using UV (recommended)
uv sync
# Or using pip
pip install -e .
cp .env.example .env
# Edit .env with your Zabbix URL and credentials
# Using UV
uv run python run_server.py
# Or directly with Python
python run_server.py
# Or using the installed script
zabbix-mcp
Docker images are available on GitHub Packages for easy deployment.
# Normal STDIO image
docker pull ghcr.io/mhajder/zabbix-mcp:latest
# MCPO image for usage with Open WebUI
docker pull ghcr.io/mhajder/zabbix-mcpo:latest
For development with additional tools:
# Clone and install with development dependencies
git clone https://github.com/mhajder/zabbix-mcp.git
cd zabbix-mcp
uv sync --group dev
# Run tests
uv run pytest
# Run with coverage
uv run pytest --cov=src/
# Run linting and formatting
uv run ruff check .
uv run ruff format .
# Setup pre-commit hooks
uv run pre-commit install
# Zabbix Connection Details
ZABBIX_URL=https://zabbix.example.com/api_jsonrpc.php
# Authentication - use EITHER token OR user/password
# API Token (preferred for Zabbix 5.4+)
ZABBIX_TOKEN=your-api-token
# OR Username/Password (for older versions)
# ZABBIX_USER=Admin
# ZABBIX_PASSWORD=zabbix
# SSL Configuration
ZABBIX_VERIFY_SSL=true
ZABBIX_TIMEOUT=30
ZABBIX_SKIP_VERSION_CHECK=false
# Read-Only Mode
# Set READ_ONLY_MODE true to disable all write operations (create, update, delete)
READ_ONLY_MODE=false
# Disabled Tags
# Comma-separated list of tags to disable tools for (empty by default)
# Example: DISABLED_TAGS=host,user,maintenance
DISABLED_TAGS=
# Logging Configuration
LOG_LEVEL=INFO
# Rate Limiting
# Set RATE_LIMIT_ENABLED true to enable rate limiting
RATE_LIMIT_ENABLED=false
RATE_LIMIT_MAX_REQUESTS=60
RATE_LIMIT_WINDOW_MINUTES=1
# Tool Search Transform (Optional)
# Set TOOL_SEARCH_ENABLED true to replace full tool listing with search tools
TOOL_SEARCH_ENABLED=false
# Search strategy: bm25 (natural language) or regex (pattern matching)
TOOL_SEARCH_STRATEGY=bm25
# Maximum number of matching tools returned by search_tools
TOOL_SEARCH_MAX_RESULTS=5
# Sentry Error Tracking (Optional)
# Set SENTRY_DSN to enable error tracking and performance monitoring
# SENTRY_DSN=https://your-key@o12345.ingest.us.sentry.io/6789
# Optional Sentry configuration
# SENTRY_TRACES_SAMPLE_RATE=1.0
# SENTRY_SEND_DEFAULT_PII=true
# SENTRY_ENVIRONMENT=production
# SENTRY_RELEASE=1.2.3
# SENTRY_PROFILE_SESSION_SAMPLE_RATE=1.0
# SENTRY_PROFILE_LIFECYCLE=trace
# SENTRY_ENABLE_LOGS=true
# MCP Transport Configuration
# Transport type: 'stdio' (default), 'sse' (Server-Sent Events), or 'http' (HTTP Streamable)
MCP_TRANSPORT=stdio
# HTTP Transport Settings (used when MCP_TRANSPORT=sse or MCP_TRANSPORT=http)
# Host to bind the HTTP server (default: 0.0.0.0 for all interfaces)
MCP_HTTP_HOST=0.0.0.0
# Port to bind the HTTP server (default: 8000)
MCP_HTTP_PORT=8000
# Optional bearer token for authentication (leave empty for no auth)
MCP_HTTP_BEARER_TOKEN=
api_version: Get Zabbix API version informationhost_get: List hosts with optional filtering by groups, templates, proxies, and search criteriahost_create: Create a new host with interfaces and template linkinghost_update: Update host properties (name, status, description)host_delete: Delete hosts by IDhostgroup_get: List host groups with optional filteringhostgroup_create: Create a new host grouphostgroup_update: Update an existing host group's properties (name)hostgroup_delete: Delete host groupstemplate_get: List templates with optional filteringtemplate_create: Create a new templatetemplate_update: Update template properties (name, description)template_delete: Delete templatesitem_get: List items with optional filtering by hosts, groups, templatesitem_create: Create a new item on a hostitem_update: Update item properties (name, delay, units, description, status)item_delete: Delete itemstrigger_get: List triggers with severity and state filteringtrigger_create: Create a new trigger with expressiontrigger_update: Update trigger properties (description, expression, priority, status, comments)trigger_delete: Delete triggersproblem_get: Get current problems with severity and time filteringevent_get: Get events with time range filteringevent_acknowledge: Acknowledge events with optional messageshistory_get: Get historical data for itemstrend_get: Get trend data for itemsuser_get: List users with optional filteringuser_create: Create a new useruser_update: Update user properties (name, surname, password, type)user_delete: Delete usersproxy_get: List proxies with optional filteringproxy_create: Create a new proxyproxy_update: Update proxy properties (name, operating mode, description)proxy_delete: Delete proxiesmaintenance_get: List maintenance periodsmaintenance_create: Create a new maintenance periodmaintenance_update: Update maintenance period properties (name, times, description)maintenance_delete: Delete maintenance periodsaction_get: List actions (triggers, autoregistration, etc.)mediatype_get: List media typesgraph_get: List graphs with optional filteringdiscoveryrule_get: List LLD discovery rulesdrule_get: List network discovery rulesitemprototype_get: Get item prototypes from discovery rulessla_get: List SLAsservice_get: List servicesscript_get: List scriptsscript_execute: Execute a script on a hostusermacro_get: List user macros (host and global)usermacro_create: Create a host macrousermacro_delete: Delete host macrosconfiguration_export: Export Zabbix configurations to JSON or XMLconfiguration_import: Import Zabbix configurations from JSON or XMLThe server supports a read-only mode that disables all write operations for safe monitoring:
READ_ONLY_MODE=true
You can disable specific categories of tools by setting disabled tags:
DISABLED_TAGS=alert,bills
FastMCP tool search can reduce prompt size for servers with many tools.
When enabled, list_tools returns two synthetic tools:
search_tools: Finds matching tools and returns their full schemascall_tool: Executes any discovered tool by nameEnable it with:
TOOL_SEARCH_ENABLED=true
TOOL_SEARCH_STRATEGY=bm25 # bm25 or regex
TOOL_SEARCH_MAX_RESULTS=8 # optional, default is 5
bm25 supports natural language queries, while regex uses a regex
pattern input for deterministic matching.
Tool search respects existing visibility controls (read-only mode and disabled tags).
The server supports rate limiting to control API usage and prevent abuse. If enabled, requests are limited per client using a sliding window algorithm.
Enable rate limiting by setting the following environment variables in your .env file:
RATE_LIMIT_ENABLED=true
RATE_LIMIT_MAX_REQUESTS=100 # Maximum requests allowed per window
RATE_LIMIT_WINDOW_MINUTES=1 # Window size in minutes
If RATE_LIMIT_ENABLED is set to true, the server will apply rate limiting middleware. Adjust RATE_LIMIT_MAX_REQUESTS and RATE_LIMIT_WINDOW_MINUTES as needed for your environment.
The server optionally supports Sentry for error tracking, performance monitoring, and debugging. Sentry integration is completely optional and only initialized if configured.
To enable Sentry monitoring, install the optional dependency:
# Using UV (recommended)
uv sync --extra sentry
Enable Sentry by setting the SENTRY_DSN environment variable in your .env file:
# Required: Sentry DSN for your project
SENTRY_DSN=https://your-key@o12345.ingest.us.sentry.io/6789
# Optional: Performance monitoring sample rate (0.0-1.0, default: 1.0)
SENTRY_TRACES_SAMPLE_RATE=1.0
# Optional: Include personally identifiable information (default: true)
SENTRY_SEND_DEFAULT_PII=true
# Optional: Environment name (e.g., "production", "staging")
SENTRY_ENVIRONMENT=production
# Optional: Release version (auto-detected from package if not set)
SENTRY_RELEASE=1.2.3
# Optional: Profiling - continuous profiling sample rate (0.0-1.0, default: 1.0)
SENTRY_PROFILE_SESSION_SAMPLE_RATE=1.0
# Optional: Profiling - lifecycle mode for profiling (default: "trace")
# Options: "all", "continuation", "trace"
SENTRY_PROFILE_LIFECYCLE=trace
# Optional: Enable log capture as breadcrumbs and events (default: true)
SENTRY_ENABLE_LOGS=true
When enabled, Sentry automatically captures:
.env fileSentry is completely optional. If you don't set SENTRY_DSN, the server will run normally without any Sentry integration, and no monitoring data will be collected.
The server supports SSL certificate verification and custom timeout settings:
ZABBIX_VERIFY_SSL=true # Enable SSL certificate verification
ZABBIX_TIMEOUT=30 # Connection timeout in seconds
The server supports multiple transport mechanisms for the MCP protocol:
The default transport uses standard input/output for communication. This is ideal for local usage and integration with tools that communicate via stdin/stdout:
MCP_TRANSPORT=stdio
For network-based deployments, you can use HTTP with Server-Sent Events. This allows the MCP server to be accessed over HTTP with real-time streaming:
MCP_TRANSPORT=sse
MCP_HTTP_HOST=0.0.0.0 # Bind to all interfaces (or specific IP)
MCP_HTTP_PORT=8000 # Port to listen on
MCP_HTTP_BEARER_TOKEN=your-secret-token # Optional authentication token
When using SSE transport with a bearer token, clients must include the token in their requests:
curl -H "Authorization: Bearer your-secret-token" http://localhost:8000/sse
The HTTP Streamable transport provides HTTP-based communication with request/response streaming. This is ideal for web integrations and tools that need HTTP endpoints:
MCP_TRANSPORT=http
MCP_HTTP_HOST=0.0.0.0 # Bind to all interfaces (or specific IP)
MCP_HTTP_PORT=8000 # Port to listen on
MCP_HTTP_BEARER_TOKEN=your-secret-token # Optional authentication token
When using streamable transport with a bearer token:
curl -H "Authorization: Bearer your-secret-token" \
-H "Accept: application/json, text/event-stream" \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}' \
http://localhost:8000/mcp
Note: The HTTP transport requires proper JSON-RPC formatting with jsonrpc and id fields. The server may also require session initialization for some operations.
For more information on FastMCP transports, see the FastMCP documentation.
git checkout -b feature/amazing-feature)uv run pytest && uv run ruff check .)git commit -m 'Add amazing feature')git push origin feature/amazing-feature)MIT License - see LICENSE file for details.
Be the first to review this server!
by Modelcontextprotocol · Developer Tools
Read, search, and manipulate Git repositories programmatically
by Modelcontextprotocol · Developer Tools
Web content fetching and conversion for efficient LLM usage
by Toleno · Developer Tools
Toleno Network MCP Server — Manage your Toleno mining account with Claude AI using natural language.