跳过安装。2 分钟内即可运行。
在 cloud.anythingmcp.com 开始免费试用,一键添加 Zabbix,然后将你的 AI 客户端(Claude、ChatGPT、Copilot 或 Cursor)指向生成的 MCP 端点。无需 Docker,无需 git clone,无需任何工程经验。
Summary
Zabbix monitoring: hosts, host groups, items, triggers, active problems, events and the latest measured values. JSON-RPC API over a single endpoint, bearer API token.
试试这样问
Zabbix 的示例提示
点击任意提示即可复制,然后粘贴到 Claude、ChatGPT、Cursor、Gemini、Copilot 或 OpenClaw 中,在该连接器上运行。
Claude 是 AI,可能会出错。请核对回答。
💡 无需安装? 直接使用 cloud.anythingmcp.com。 登录、点击 Connectors → Zabbix、粘贴凭证、生成 MCP API key — 完成。无 Docker、无
git clone、无本地服务器。
Zabbix
Zabbix monitoring: hosts, host groups, items, triggers, active problems, events and the latest measured values. JSON-RPC API over a single endpoint, bearer API token.
设置
Getting a token (Zabbix 5.4 and newer)
- Sign in to the Zabbix frontend as a Super admin and open Users → API tokens.
- Create a token for a user with read permission on the host groups the agent should see, and copy the value — Zabbix shows it once.
- Set
ZABBIX_URLto your frontend root (no trailing slash, no/api_jsonrpc.php) andZABBIX_API_TOKENto the token. The adapter sends it asAuthorization: Bearer …, which Zabbix 6.0+ accepts; on 5.4 the token also works in the JSON-RPCauthfield, which this adapter does not use.
…(continued in the in-app connector instructions)
前提条件: ZABBIX_URL, ZABBIX_API_TOKEN
本地安装连接器
curl -fsSL https://raw.githubusercontent.com/HelpCode-ai/anythingmcp/main/docker-compose.quickstart.yml -o docker-compose.yml
printf 'JWT_SECRET=%s\nENCRYPTION_KEY=%s\n' "$(openssl rand -hex 32)" "$(openssl rand -hex 32)" > .env
docker compose up -d
打开 http://localhost:3000/connectors/store,选择 Zabbix 并填入前提条件中列出的环境变量。
可用工具
| Tool | What it does |
|---|---|
zabbix_get_api_version | Read the Zabbix API version |
zabbix_list_hosts | List monitored hosts with their name, status, interfaces and host groups |
zabbix_list_host_groups | List host groups with their id, name and the number of hosts in each |
zabbix_list_problems | List the problems that are active right now, with their severity, host, name and the time they started |
zabbix_list_events | List events from the history — including problems that have since resolved, which problem |
zabbix_list_triggers | List triggers with their expression, severity, current value and the host they belong to — the rules that turn measurements into problems |
zabbix_list_items | List monitored items with their key, name, type, value type and units — what Zabbix actually measures on a host |
zabbix_get_latest_values | Read the most recent value of specific items — the current disk usage, load average or temperature, rather than the alert about it |
zabbix_get_history | Read historical values of one item over a time range — the series behind a graph |
zabbix_list_maintenance_windows | List configured maintenance windows with their hosts, groups and periods — the explanation for why an alert did not fire |
下一步
这份指南对你有帮助吗?