🎩 You're Invited:Meet the Socket team at Black Hat in Las Vegas, August 3-6.RSVP
Sign In

mcp-zabbix

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

mcp-zabbix

MCP server for Zabbix API - exposes all Zabbix API functionality via MCP

pipPyPI
Version
0.1.0
Weekly downloads
31
19.23%
Maintainers
1
Weekly downloads
 

mcp-zabbix

MCP server for Zabbix API - exposes all Zabbix API functionality via MCP

PyPI Python

mcp-name: io.github.daedalus/mcp-zabbix

Install

pip install mcp-zabbix

Configuration

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)

Usage

from mcp_zabbix import mcp

mcp.run()

Or via CLI:

mcp-zabbix

API

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)

Development

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/

FAQs

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts