Skip to main content
Glama
ryanmat

io.github.ryanmat/logicmonitor

by ryanmat

get_users

Read-onlyIdempotent

Fetch LogicMonitor user accounts using filters for username or raw expressions, with pagination to manage large result sets.

Instructions

List users from LogicMonitor

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNoMax results
filterNoRaw filter expression (overrides name_filter). Example: username~admin,status:active
offsetNoPagination offset
name_filterNoFilter by username (substring match)

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv4.2.0

TDQS

A3.8/5.0
Behavior3/5

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

Annotations already declare readOnlyHint=true, destructiveHint=false, idempotentHint=true, and openWorldHint=true, covering the safety and idempotency profile. The description adds no additional behavioral context, such as pagination behavior, filtering capabilities, or return fields. Since annotations cover the safety aspects, the description doesn't contradict but also doesn't add value beyond the basic action.

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?

The description is a single concise sentence that states the action and resource without any unnecessary words. It is front-loaded and appropriately sized for a simple list operation. Every word earns its place.

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?

This is a simple read-only list operation with four optional parameters, all documented in the schema. Annotations cover the safety profile. The description, while minimal, is sufficient for an agent to understand the purpose. It doesn't describe the return format, but for a list of users, it's reasonably obvious. Given the simplicity and the schema coverage, the description is complete enough, though it could mention pagination.

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?

The input schema has 100% description coverage; each parameter (limit, filter, offset, name_filter) has a clear description. The tool description does not add any additional meaning beyond what the schema already provides. Since the schema fully documents the parameters, the description does not need to compensate. Baseline 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 'List users from LogicMonitor' states a specific verb (List) and resource (users) with clear context (LogicMonitor). It unambiguously indicates a collection operation, distinguishing it from the singular get_user by its plural form. The purpose is crystal clear.

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 provides no explicit guidance on when to use this tool versus alternatives like get_user or create_user. It implies that if you need a list of users, this is the tool, but there is no mention of when not to use it or what other tools are for. A brief note about the singular alternative would improve clarity.

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

Deploy Server

Other Tools