zabbix-mcp-server
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| AUTH_TYPE | No | Must be set to no-auth for streamable-http transport | |
| READ_ONLY | No | Set to true, 1, or yes to enable read-only mode (only GET operations allowed) | |
| VERIFY_SSL | No | Enable/disable SSL certificate verification | true |
| ZABBIX_URL | No | Your Zabbix server API endpoint (e.g., https://zabbix.example.com) | |
| ZABBIX_USER | No | Your Zabbix username | |
| ZABBIX_TOKEN | No | Your Zabbix API token | |
| ZABBIX_MCP_HOST | No | Server host (only used when ZABBIX_MCP_TRANSPORT=streamable-http) | 127.0.0.1 |
| ZABBIX_MCP_PORT | No | Server port (only used when ZABBIX_MCP_TRANSPORT=streamable-http) | 8000 |
| ZABBIX_PASSWORD | No | Your Zabbix password | |
| ZABBIX_MCP_TRANSPORT | No | Transport type: stdio (default) or streamable-http | stdio |
| ZABBIX_MCP_STATELESS_HTTP | No | Stateless mode (only used when ZABBIX_MCP_TRANSPORT=streamable-http) | false |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": true
} |
| logging | {} |
| prompts | {
"listChanged": false
} |
| resources | {
"subscribe": false,
"listChanged": false
} |
| extensions | {
"io.modelcontextprotocol/ui": {}
} |
| experimental | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| zabbix_apiA | Zabbix server: https://zabbix.example.com Execute Zabbix API method. |
| zabbix_api_docsA | Get Zabbix API method documentation. Call this BEFORE zabbix_api() if you are unsure about method parameters. Shows required/optional parameters with types and descriptions. |
| zabbix_api_listA | Get available Zabbix API objects and methods. Call this to discover what API methods are available before using zabbix_api(). Returns all objects and methods discovered dynamically from Zabbix API. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 3 tools
The three tools have clearly distinct roles: execute API calls, get documentation, and list methods. No overlap in functionality.
All tools follow the consistent 'zabbix_api_<suffix>' pattern (the main tool is 'zabbix_api' as the base).
With 3 tools, the set is minimal but well-scoped for a generic Zabbix API wrapper. Each tool is necessary and sufficient.
The set covers discovery, documentation, and execution of any Zabbix API method. No gaps for the stated purpose.