Skip to main content
Glama
ryanmat

io.github.ryanmat/logicmonitor

by ryanmat

create_report

Create new LogicMonitor reports by specifying name, type, format, and optional schedule. Enables generating monitoring data reports on-demand or via cron schedule.

Instructions

Create a new report (requires write permission)

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nameYesReport name
formatNoOutput formatPDF
group_idNoReport group ID
descriptionNoReport description
report_typeYesReport type
schedule_cronNoCron expression to schedule generation (omit for on-demand only)
schedule_timezoneNoSchedule timezone (e.g. America/Los_Angeles)

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv4.2.0

TDQS

A3.5/5.0
Behavior3/5

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

Annotations already indicate this is not read-only and is not idempotent; the description adds a write-permission requirement, which is useful context. It does not disclose side effects, validation behavior, or whether scheduling parameters affect creation, but this is acceptable given the annotation coverage.

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 one concise sentence with no redundant words. The core purpose is front-loaded, and the permission note is appended without bloating the definition.

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?

This is a moderately complex create operation with seven parameters, including scheduling fields, and no output schema. The schema covers parameter meanings, but the description does not clarify expected return values, report_type value constraints, or how schedule_cron interacts with on-demand generation, leaving minor gaps.

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 the schema already documents all seven parameters. The description adds no additional parameter-level meaning beyond what the schema provides, matching the baseline score.

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 action and resource: 'Create a new report'. This clearly separates it from sibling tools like get_reports, run_report, update_report_schedule, and delete_report by the creation verb and target resource.

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 guidance is given on when to use this tool versus alternatives such as run_report or update_report_schedule. The permission note is useful but does not help an agent choose among related report operations.

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