Skip to main content
Glama
mhajder

Zabbix MCP Server

by mhajder

user_get

Read-onlyIdempotent

Retrieve Zabbix users and their access details, including authentication and permissions, to manage who can view or modify monitoring data.

Instructions

Get users from Zabbix.

Users represent people with access to the Zabbix system. Each user has authentication credentials and permission level determining what they can view and modify.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNoMaximum number of results to return. Default is 100.
offsetNoNumber of matching records to skip. Use with 'limit' to page through results; check 'has_more' and 'total' in the response.
outputNoextend
searchNoDictionary with search criteria like {'username': 'admin'}. Zabbix 5.4 renamed 'alias' to 'username' and rejects the old name.
useridsNoList of user IDs to get. If empty, returns all users.
sortfieldNoField to sort by. A deterministic sort is required for paging to be consistent.userid
sortorderNoSort direction - 'ASC' or 'DESC'.ASC
count_outputNoIf true, returns only the count of matched objects as an integer.
filter_paramsNoAdditional filter parameters for advanced filtering.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. Changed6 schema fields changedv0.6.0
    • changedInput schema / properties / offset / description
      Previous value: -"Number of results to skip (for pagination). Requires sortfield to be set."New value: +"Number of matching records to skip. Use with 'limit' to page through results; check 'has_more' and 'total' in the response."
    • changedInput schema / properties / search / description
      Previous value: -"Dictionary with search criteria like {'alias': 'admin'} for username matching."New value: +"Dictionary with search criteria like {'username': 'admin'}. Zabbix 5.4\n    renamed 'alias' to 'username' and rejects the old name."
    • removedInput schema / properties / sortfield / anyOf
      Removed value: -[
      -  {
      -    "type": "string"
      -  },
      -  {
      -    "type": "null"
      -  }
      -]
    • changedInput schema / properties / sortfield / default
      Previous value: -nullNew value: +"userid"
    • changedInput schema / properties / sortfield / description
      Previous value: -"Field to sort by."New value: +"Field to sort by. A deterministic sort is required for paging to be consistent."
    • addedInput schema / properties / sortfield / type
      Added value: +"string"
  2. First observedv0.5.3

TDQS

B3.2/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already declare readOnlyHint=true, idempotentHint=true, destructiveHint=false, so the safety profile is covered. The description adds value by explaining the domain concept of a user (auth credentials, permission levels), which helps an agent understand the shape of returned data. However, it doesn't address behaviors like default output='extend' potentially returning large payloads or whether system/built-in users are included.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Three tight sentences with the core purpose front-loaded. There is no filler or repetition. The only minor critique is that the entity explanation, while useful, is slightly expository for a tool description; a note on result size or paging behavior could have earned a 5.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

With strong annotations (readOnly, idempotent), an output schema, and rich schema descriptions, the description's job is lighter. That said, given the scalar-context signal of offset pagination with total counts, a one-liner about large result sets or default output='extend' behavior would have meaningfully improved usability. It's adequate but not exemplary.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 89%, so the schema already documents 8 of 9 parameters with meaningful descriptions (e.g., the Zabbix 5.4 alias→username note, pagination guidance with has_more/total). With high schema coverage, the baseline of 3 applies and the description correctly doesn't duplicate parameter info. The description adds nothing parameter-related, but none is needed given the schema's thoroughness.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

Opens with a specific verb+resource: "Get users from Zabbix," which clearly states the operation. The two follow-up sentences add helpful domain context about what a user is in this system (people with access, credentials, permission levels). It doesn't explicitly name sibling tools for differentiation, but the read-vs-write distinction from user_create/user_update/user_delete is immediately obvious.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides no guidance on when to use this tool vs alternatives. There's no mention of pagination strategy despite offset/limit params, no note about when get is preferred over create/update, and no exclusions or caveats. An agent must infer usage entirely from the name and schema.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/mhajder/zabbix-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server