Skip to main content
Glama
ryanmat

io.github.ryanmat/logicmonitor

by ryanmat

get_configsource

Read-onlyIdempotent

Retrieve detailed configuration and metadata for a specific ConfigSource by providing its ID.

Instructions

Get details about a specific ConfigSource

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
configsource_idYesConfigSource ID

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv4.2.0

TDQS

B3.2/5.0
Behavior3/5

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

The annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, so the safety profile is clear. The description adds no extra behavioral context beyond 'Get details,' such as what fields are returned, whether the ConfigSource must exist, or how it relates to configsource updates. No contradiction exists.

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 with no filler or redundancy. It front-loads the action and resource immediately, which is appropriate for a simple getter tool.

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 single-parameter, read-only retrieval tool with rich annotations, the description is largely adequate. The main gaps are not mentioning that configsource IDs can be discovered via get_configsources and not describing the response shape, but the low complexity means an agent can still invoke it correctly.

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%: the only parameter, configsource_id, is documented as 'ConfigSource ID.' The description adds no additional meaning about the parameter, its source, format, or validation. Baseline 3 is appropriate because the schema carries the parameter semantics.

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 clearly states the verb ('Get details') and the resource ('a specific ConfigSource'), and the singular 'specific' indicates this is a by-ID lookup rather than a list operation. It doesn't explicitly name siblings like get_configsources or get_configsource_update_reasons, but the core purpose is unambiguous.

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?

The description gives no guidance about when to use this tool versus alternatives. An agent must infer that get_configsources is the listing counterpart and that this tool is for retrieving exactly one ConfigSource by ID. No when-to-use or when-not-to-use context is provided.

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