Skip to main content
Glama
ryanmat

io.github.ryanmat/logicmonitor

by ryanmat

get_collector_group

Read-onlyIdempotent

Fetch details for a specific collector group by its ID, including configuration and status, to aid in monitoring infrastructure.

Instructions

Get details about a specific collector group

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
group_idYesCollector group ID

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv4.2.0

TDQS

A3.6/5.0
Behavior3/5

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

Annotations already cover the safety profile (readOnlyHint, idempotentHint, destructiveHint=false), so the description does not need to restate that. It adds only the 'specific' scoping and no additional behavioral context such as error behavior or response contents.

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 front-loaded sentence with no filler. It communicates the operation and scope immediately.

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?

For a one-parameter read-only getter with strong annotations and no nested objects, this description is sufficient for basic invocation. It does not enumerate returned fields, but 'details' plus the schema and annotations provide enough context.

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 schema fully documents group_id with 100% coverage, so the baseline of 3 applies. The description does not add any meaning beyond the schema's 'Collector group ID'.

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 uses the verb 'Get' with the resource 'collector group' and 'specific' signals a single-entity lookup by ID. This clearly distinguishes it from get_collector_groups (list all) and get_collector (a collector, not a group).

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?

No explicit guidance is given about when to use this tool versus alternatives such as get_collector_groups or get_collector. The intended usage is only implied by the singular phrasing and the parameter name, not stated.

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