Skip to main content
Glama
ryanmat

io.github.ryanmat/logicmonitor

by ryanmat

create_recipient_group

Create a recipient group to organize LogicMonitor alert contacts. Provide a group name and optionally add recipients by type, method, and address for targeted notifications.

Instructions

Create a recipient group (requires write permission)

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nameYesName of the recipient group. Sent as groupName to the LM v3 API.
recipientsNoOptional initial recipients. Each entry is a Recipient {type, method, addr, contact}. ``type`` and ``method`` are required by the LM API.
descriptionNoOptional description

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv4.2.0

TDQS

A4/5.0
Behavior4/5

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

Annotations already signal non-read-only and non-idempotent behavior, so the description's added value is the explicit authorization requirement, 'requires write permission'. This is a useful behavioral trait beyond the structured annotations, though the description does not cover potential duplicate-name failures or response behavior.

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?

A single front-loaded sentence contains the action and a key prerequisite without filler. Every word contributes meaning, and the tool's scope is immediately clear.

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 simple, three-parameter create operation with complete schema coverage and safety annotations, the description plus schema provide enough to call the tool correctly. It does not describe return values, and no output schema exists, but none are essential for 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 coverage is 100%, so each parameter is already documented in the input schema. The description itself adds no parameter-level meaning beyond the operation, matching the baseline for full schema coverage.

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 imperative 'Create' with a specific resource, 'recipient group', and is clearly distinguished from sibling update/delete/get tools by the create verb. It states the operation concisely and unambiguously.

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 conveys the basic context for using the tool (creating a new recipient group) and adds a permission prerequisite, 'requires write permission', but it never explicitly contrasts with alternatives such as update_recipient_group or delete_recipient_group. Usage guidance is therefore implied rather than explicit.

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