Skip to main content
Glama
severalnines

@severalnines/ccx-admin-mcp

Official
by severalnines

List users

ccx_admin_list_users
Read-onlyIdempotent

Retrieve CCX users with id, login, name, creation time, and status flags. Filter by name, login, suspended, or deleted, and paginate results.

Instructions

List all CCX users with id, login, name, creation time and suspended/deleted flags. The API returns everything; filters are applied client-side.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nameNoSubstring of first or last name
limitNoMax results (default 50)
loginNoSubstring of the login/email
offsetNoOffset into the filtered list
deletedNoOnly deleted (true) or only existing (false)
suspendedNoOnly suspended (true) or only active (false)

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4/5.0
Behavior4/5

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

Annotations already declare readOnlyHint and idempotentHint, so the safety profile is covered. The description adds meaningful behavioral context beyond annotations: the API returns everything and filters are applied client-side, which is important for understanding performance and result size.

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

Conciseness5/5

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

Two sentences with no filler. The core purpose and the key behavioral caveat are front-loaded, making the description easy to parse quickly.

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

Completeness4/5

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

The description covers the essential context: what is returned, that it is a read-only operation, and that filtering is client-side. With all parameters documented in the schema and annotations covering safety, nothing critical is missing, though an explicit note about output shape would make it fully complete.

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 description coverage is 100%, so all six parameters are already documented in the schema. The description adds no additional parameter-level meaning beyond what the schema provides, so the baseline score of 3 is appropriate.

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

Purpose5/5

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

The description states a specific verb ('List'), a clear resource ('all CCX users'), and enumerates the returned fields. It distinguishes itself from sibling tools like ccx_admin_count_users by focusing on listing full user records rather than counts.

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

Usage Guidelines3/5

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

The description implies usage for retrieving user lists and notes that filtering is client-side, which tells the agent not to expect server-side filtering. However, it does not explicitly name alternatives or state when to prefer this tool over siblings like ccx_admin_count_users.

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