Skip to main content
Glama
ryanmat

io.github.ryanmat/logicmonitor

by ryanmat

get_device_config_version

Read-onlyIdempotent

Fetch a specific device configuration version with complete content and diffs. Supply device, datasource, instance, and config IDs to inspect changes, optionally comparing against an epoch for previous version.

Instructions

Get a specific config version with full content and diffs

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
config_idYesConfig version ID (from get_device_config)
device_idYesDevice ID
instance_idYesInstance ID
start_epochNoEpoch to compare against. Use 0 to compare with previous version.
device_datasource_idYesDevice-DataSource ID for the ConfigSource

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv4.2.0

TDQS

A4.2/5.0
Behavior4/5

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

Annotations already declare readOnlyHint=true and idempotentHint=true, covering the safety profile. The description adds that it returns full content and diffs, providing additional behavioral context about the output. It does not introduce contradictions and adds value beyond annotations.

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 extraneous words. It conveys the core purpose and output efficiently.

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?

The description, combined with the schema (which explains parameter provenance, e.g., config_id from get_device_config) and annotations, gives an agent sufficient information to call the tool correctly. It lacks an output schema, but the description hints at the return content. There are no significant gaps for a simple read operation.

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 all five parameters are already documented. The description does not add parameter-specific details beyond what the schema provides, so the baseline of 3 applies.

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 clearly states the action (get), the specific resource (a config version), and what it provides (full content and diffs). This distinguishes it from sibling tools like get_device_config (which lists versions) and collect_device_config (which initiates collection).

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The context is clear: this tool is for retrieving a specific config version, presumably after obtaining a config_id from get_device_config. While it doesn't name alternatives explicitly, the description and name imply the use case. It lacks explicit exclusions but is not misleading.

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