Skip to main content
Glama
igorolv

redmine-mcp-server

getVersionChangelog

getVersionChangelog
Read-onlyIdempotent

Summarize a version's issue scope with open and closed counts, grouped by tracker, for a given project and version ID.

Instructions

Summarize the issue scope of one known version/milestone as open and closed counts with issues grouped by tracker. Use getReleaseRisks for readiness risks or listVersions to discover the version ID.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
projectIdYesProject identifier or numeric ID
versionIdYesVersion/milestone ID; from listVersions

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
hoursNo
countsNo
versionNo
byTrackerNoIssues grouped by tracker name (Bug, Feature, ...).
projectIdNoProject identifier the version belongs to.
truncatedYesTrue when the analyzed set is a truncated slice of the full issue set.
versionIdYesVersion/milestone identifier.
totalIssuesYesTotal number of issues tied to this version across all pages.
analyzedIssuesYesNumber of issues actually analyzed for this changelog.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observed

TDQS

A4.5/5.0
Behavior4/5

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

Annotations already declare readOnlyHint, idempotentHint, and destructiveHint=false, so the safety profile is covered. The description adds that the tool summarizes rather than mutates and that it targets a single known version, which is useful behavioral context beyond the structured fields.

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?

Two sentences with no fluff. The primary purpose is front-loaded, and the alternative-tool guidance is compactly placed at the end. Every clause earns its place.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

With an output schema present and robust annotations, the description only needed to clarify scope, output grouping, and how to obtain the version ID—all of which it does. An agent can correctly select and invoke this tool without additional 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?

Schema coverage is 100%, so the baseline is 3. The description's 'listVersions to discover the version ID' largely repeats the schema hint for versionId, and projectId is already self-explanatory in the schema. No new parameter-level meaning is added.

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 verb and resource: it summarizes one known version/milestone. It also specifies the output form (open and closed counts, grouped by tracker), which clearly separates it from generic changelog or comparison tools. The naming of getReleaseRisks and listVersions further disambiguates its niche.

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

Usage Guidelines5/5

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

It explicitly says to use getReleaseRisks when readiness risks are the goal, and listVersions when the version ID is unknown. This gives the agent an immediate routing decision against the most relevant siblings. No inference is required.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.