Skip to main content
Glama
ryanmat

io.github.ryanmat/logicmonitor

by ryanmat

get_website_groups

Read-onlyIdempotent

List website groups from LogicMonitor, optionally filtering by parent group ID to find specific monitoring groups.

Instructions

List website groups

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNoMax results
parent_idNoFilter by parent group ID

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv4.2.0

TDQS

B3.4/5.0
Behavior3/5

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

Annotations already declare readOnlyHint=true, openWorldHint=true, idempotentHint=true, and destructiveHint=false, so the safety profile is clear. The description adds no behavioral context beyond listing, such as pagination or default ordering, but it doesn't contradict annotations.

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?

The description is a single concise sentence that states the action and resource without waste. It is appropriately sized for a simple list operation, though it could add a bit more context about filtering.

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?

For a simple read-only list tool with full schema coverage and safety annotations, the description is adequate. However, it doesn't mention whether parent_id is hierarchical or how limit interacts with pagination, which could matter for correct invocation.

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 both parameters (limit and parent_id) are already documented in the schema. The description adds no additional meaning beyond what the schema provides, so baseline 3 is appropriate.

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?

The description 'List website groups' uses a specific verb and resource, clearly indicating it retrieves website groups. It is distinguishable from siblings like get_websites and get_website, though it doesn't explicitly contrast with them.

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 a read-only listing operation, and the sibling list includes get_websites and get_website, so an agent can infer this is for groups rather than individual websites. However, there is no explicit guidance on when to use this tool versus alternatives like get_website_groups vs get_websites.

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